* Re: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user
2021-01-11 13:37 [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user JiangYu
@ 2021-01-11 5:48 ` Jiang, YuX
2021-01-11 6:57 ` Zhao, HaiyangX
2021-01-13 8:32 ` Tu, Lijuan
1 sibling, 1 reply; 4+ messages in thread
From: Jiang, YuX @ 2021-01-11 5:48 UTC (permalink / raw)
To: Jiang, YuX, dts
[-- Attachment #1: Type: text/plain, Size: 330 bytes --]
Tested-by: JiangYu <yux.jiang@intel.com>
Best Regards
Jiang, Yu
> -----Original Message-----
> From: JiangYu <yux.jiang@intel.com>
> Sent: Monday, January 11, 2021 9:37 PM
> To: dts@dpdk.org
> Cc: Jiang, YuX <yux.jiang@intel.com>
> Subject: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when
> launch_vhost_user
[-- Attachment #2: TestVirTioVhostCbdma.log --]
[-- Type: application/octet-stream, Size: 251956 bytes --]
[-- Attachment #3: vhost-user.log --]
[-- Type: application/octet-stream, Size: 44785 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user
2021-01-11 5:48 ` Jiang, YuX
@ 2021-01-11 6:57 ` Zhao, HaiyangX
0 siblings, 0 replies; 4+ messages in thread
From: Zhao, HaiyangX @ 2021-01-11 6:57 UTC (permalink / raw)
To: Jiang, YuX, Jiang, YuX, dts
Acked-by: Haiyang Zhao <haiyangx.zhao@intel.com>
Best Regards,
Zhao Haiyang
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Jiang, YuX
> Sent: Monday, January 11, 2021 13:48
> To: Jiang, YuX <yux.jiang@intel.com>; dts@dpdk.org
> Subject: Re: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when
> launch_vhost_user
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user
@ 2021-01-11 13:37 JiangYu
2021-01-11 5:48 ` Jiang, YuX
2021-01-13 8:32 ` Tu, Lijuan
0 siblings, 2 replies; 4+ messages in thread
From: JiangYu @ 2021-01-11 13:37 UTC (permalink / raw)
To: dts; +Cc: JiangYu
Add ports when launch_vhost_user
Signed-off-by: JiangYu <yux.jiang@intel.com>
---
tests/TestSuite_vhost_cbdma.py | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tests/TestSuite_vhost_cbdma.py b/tests/TestSuite_vhost_cbdma.py
index 9b9d53d..977f290 100644
--- a/tests/TestSuite_vhost_cbdma.py
+++ b/tests/TestSuite_vhost_cbdma.py
@@ -201,9 +201,8 @@ class TestVirTioVhostCbdma(TestCase):
out = self.dut.send_expect("cat /proc/meminfo |grep Hugepagesize|awk '{print($2)}'", "# ")
return True if out == '2048' else False
- def launch_testpmd_as_vhost_user(self, command, cores="Default", dev=""):
- self.pmdout_vhost_user.start_testpmd(cores=cores, param=command, vdevs=[dev], ports=[],
-
+ def launch_testpmd_as_vhost_user(self, command, cores="Default", dev="", ports = ""):
+ self.pmdout_vhost_user.start_testpmd(cores=cores, param=command, vdevs=[dev], ports=[ports],
prefix="vhost", fixed_prefix=True)
self.vhost_user.send_expect('set fwd mac', 'testpmd> ', 120)
@@ -265,7 +264,7 @@ class TestVirTioVhostCbdma(TestCase):
pvp_split_all_path_virtio_params = "--tx-offloads=0x0 --enable-hw-vlan-strip --nb-cores=%d --txd=%d " \
"--rxd=%d" % (queue, txd_rxd, txd_rxd)
self.launch_testpmd_as_vhost_user(eal_tx_rxd % (queue, txd_rxd, txd_rxd), self.cores[0:2],
- dev=vhost_vdevs % (queue, dmathr), )
+ dev=vhost_vdevs % (queue, dmathr), ports=self.dut_ports[0])
for key, path_mode in dev_path_mode_mapper.items():
if key == "vector_rx_path":
@@ -319,7 +318,7 @@ class TestVirTioVhostCbdma(TestCase):
# launch vhost testpmd
self.launch_testpmd_as_vhost_user(eal_params, self.cores[0:2],
- dev=vhost_dev % vhost_dmas)
+ dev=vhost_dev % vhost_dmas, ports=self.dut_ports[0])
#
# queue 2 start virtio testpmd, check perforamnce and RX/TX
mode = "dynamic_queue2"
@@ -360,7 +359,7 @@ class TestVirTioVhostCbdma(TestCase):
dmathr = 512
vhost_dmas = f"dmas=[txq0@{self.used_cbdma[2]};txq1@{self.used_cbdma[3]}],dmathr={dmathr}"
self.launch_testpmd_as_vhost_user(eal_params, self.cores[0:2],
- dev=vhost_dev % vhost_dmas)
+ dev=vhost_dev % vhost_dmas, ports=self.dut_ports[0])
self.virtio_user.send_expect("clear port stats all", "testpmd> ", 30)
self.send_and_verify(mode, queue_list=range(queue))
self.check_port_stats_result(self.virtio_user)
--
2.7.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user
2021-01-11 13:37 [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user JiangYu
2021-01-11 5:48 ` Jiang, YuX
@ 2021-01-13 8:32 ` Tu, Lijuan
1 sibling, 0 replies; 4+ messages in thread
From: Tu, Lijuan @ 2021-01-13 8:32 UTC (permalink / raw)
To: Jiang, YuX, dts; +Cc: Jiang, YuX
> Subject: [dts] [PATCH V1] tests/vhost_cbdma: Add ports when
> launch_vhost_user
>
> Add ports when launch_vhost_user
>
> Signed-off-by: JiangYu <yux.jiang@intel.com>
Applied, if it is not a term, please use lowercase next time.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-01-13 8:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-11 13:37 [dts] [PATCH V1] tests/vhost_cbdma: Add ports when launch_vhost_user JiangYu
2021-01-11 5:48 ` Jiang, YuX
2021-01-11 6:57 ` Zhao, HaiyangX
2021-01-13 8:32 ` Tu, Lijuan
test suite reviews and discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://inbox.dpdk.org/dts/0 dts/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 dts dts/ http://inbox.dpdk.org/dts \
dts@dpdk.org
public-inbox-index dts
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://inbox.dpdk.org/inbox.dpdk.dts
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git