* [dts][PATCH V2] tests/vhost_async_robust_cbdma: Optimize calling virtio_common API method
@ 2023-04-23 3:11 Dukai Yuan
0 siblings, 0 replies; only message in thread
From: Dukai Yuan @ 2023-04-23 3:11 UTC (permalink / raw)
To: dts; +Cc: Dukai Yuan
The tests/virtio_common.py have been optimized, so modify this suite
which calls the virtio_common API in cbdma_common() class.
Signed-off-by: Dukai Yuan <dukaix.yuan@intel.com>
---
tests/TestSuite_vhost_async_robust_cbdma.py | 28 ++++++++++-----------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/tests/TestSuite_vhost_async_robust_cbdma.py b/tests/TestSuite_vhost_async_robust_cbdma.py
index fda7cdfe..cd163fd8 100644
--- a/tests/TestSuite_vhost_async_robust_cbdma.py
+++ b/tests/TestSuite_vhost_async_robust_cbdma.py
@@ -58,7 +58,7 @@ class TestVhostAsyncRobustCbdma(TestCase):
self.dut.send_expect("rm -rf ./vhost-net*", "#")
self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
self.dut.send_expect("killall -s INT qemu-system-x86_64", "#")
- self.CC.bind_all_cbdma_to_kernel()
+ self.CC.bind_cbdma_to_kernel_driver()
@property
def check_2M_env(self):
@@ -359,8 +359,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 1: PVP virtio-user quit test
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=1, driver_name="vfio-pci", socket=self.ports_socket
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=1, driver_name="vfio-pci", socket=self.ports_socket
)
dmas = "txq0@%s;rxq0@%s" % (cdbmas[0], cdbmas[0])
vhost_eal_param = (
@@ -397,8 +397,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 2: PVP vhost-user quit test
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=1, driver_name="vfio-pci", socket=self.ports_socket
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=1, driver_name="vfio-pci", socket=self.ports_socket
)
dmas = "txq0@%s;rxq0@%s" % (cdbmas[0], cdbmas[0])
vhost_eal_param = (
@@ -437,8 +437,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 3: PVP vhost async test with redundant device parameters
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=4, driver_name="vfio-pci", socket=self.ports_socket
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=4, driver_name="vfio-pci", socket=self.ports_socket
)
dmas = "txq0@%s;rxq0@%s" % (cdbmas[1], cdbmas[1])
vhost_eal_param = (
@@ -472,8 +472,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 4: Loopback vhost async test with each queue using 2 DMA devices
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=3, driver_name="vfio-pci", socket=self.ports_socket
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=3, driver_name="vfio-pci", socket=self.ports_socket
)
dmas = "txq0@%s;txq0@%s;rxq0@%s;rxq0@%s" % (
cdbmas[0],
@@ -510,8 +510,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 5: Loopback vhost async test with dmas parameters out of order
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=2, driver_name="vfio-pci", socket=self.ports_socket
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=2, driver_name="vfio-pci", socket=self.ports_socket
)
dmas = "rxq3@%s;txq0@%s;rxq1@%s;txq2@%s" % (
cdbmas[1],
@@ -550,8 +550,8 @@ class TestVhostAsyncRobustCbdma(TestCase):
"""
Test Case 6: VM2VM split and packed ring mergeable path with cbdma enable and server mode
"""
- cdbmas = self.CC.bind_cbdma_to_dpdk(
- cbdma_number=16, driver_name="vfio-pci", socket=-1
+ cdbmas = self.CC.bind_cbdma_to_dpdk_driver(
+ cbdma_num=16, driver_name="vfio-pci", socket=-1
)
dmas1 = (
"txq0@%s;"
@@ -690,7 +690,7 @@ class TestVhostAsyncRobustCbdma(TestCase):
def tear_down(self):
self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
self.dut.send_expect("killall -s INT qemu-system-x86_64", "#")
- self.CC.bind_all_cbdma_to_kernel()
+ self.CC.bind_cbdma_to_kernel_driver()
def tear_down_all(self):
self.close_all_session()
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-04-23 3:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-23 3:11 [dts][PATCH V2] tests/vhost_async_robust_cbdma: Optimize calling virtio_common API method Dukai Yuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).