From: Wei Ling <weix.ling@intel.com>
To: dts@dpdk.org
Cc: Wei Ling <weix.ling@intel.com>
Subject: [dts][PATCH V1 2/2] tests/vhost_virtio_user_interrupt: delete CBDMA related testcases and code
Date: Thu, 19 May 2022 02:26:57 -0400 [thread overview]
Message-ID: <20220519062657.2813076-1-weix.ling@intel.com> (raw)
Delete CBDMA related testcases and code.
Signed-off-by: Wei Ling <weix.ling@intel.com>
---
.../TestSuite_vhost_virtio_user_interrupt.py | 170 +-----------------
1 file changed, 7 insertions(+), 163 deletions(-)
diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 9529ffeb..01744dd4 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -61,9 +61,6 @@ class TestVirtioUserInterrupt(TestCase):
self.core_mask_virtio = self.core_mask_l3fwd
self.pci_info = self.dut.ports_info[0]["pci"]
self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
- self.cbdma_dev_infos = []
- self.dmas_info = None
- self.device_str = None
self.prepare_l3fwd_power()
self.tx_port = self.tester.get_local_port(self.dut_ports[0])
self.tx_interface = self.tester.get_interface(self.tx_port)
@@ -124,7 +121,7 @@ class TestVirtioUserInterrupt(TestCase):
else:
self.logger.info("Launch l3fwd-power sample finished")
- def start_vhost_testpmd(self, pci="", dmas=None):
+ def start_vhost_testpmd(self, pci=""):
"""
start testpmd on vhost side
"""
@@ -132,33 +129,14 @@ class TestVirtioUserInterrupt(TestCase):
vdev = ["net_vhost0,iface=vhost-net,queues=1,client=0"]
para = " -- -i --rxq=1 --txq=1"
allow_pci = [self.pci_info]
- if dmas:
- for item in self.used_cbdma:
- allow_pci.append(item)
if len(pci) == 0:
- if dmas:
- vdev = ["net_vhost0,iface=vhost-net,queues=1,dmas=[%s]" % dmas]
- eal_params = self.dut.create_eal_parameters(
- cores=self.core_list_vhost, ports=allow_pci, vdevs=vdev
- )
- else:
- eal_params = self.dut.create_eal_parameters(
- cores=self.core_list_vhost, ports=allow_pci, vdevs=vdev
- )
+ eal_params = self.dut.create_eal_parameters(
+ cores=self.core_list_vhost, ports=allow_pci, vdevs=vdev
+ )
else:
- if dmas:
- vdev = ["net_vhost0,iface=vhost-net,queues=1,client=0,dmas=[%s]" % dmas]
- para = " -- -i"
- eal_params = self.dut.create_eal_parameters(
- cores=self.core_list_vhost,
- ports=allow_pci,
- prefix="vhost",
- vdevs=vdev,
- )
- else:
- eal_params = self.dut.create_eal_parameters(
- cores=self.core_list_vhost, prefix="vhost", no_pci=True, vdevs=vdev
- )
+ eal_params = self.dut.create_eal_parameters(
+ cores=self.core_list_vhost, prefix="vhost", no_pci=True, vdevs=vdev
+ )
cmd_vhost_user = testcmd + eal_params + para
self.vhost.send_expect(cmd_vhost_user, "testpmd>", 30)
self.vhost.send_expect("set fwd mac", "testpmd>", 30)
@@ -201,59 +179,6 @@ class TestVirtioUserInterrupt(TestCase):
else:
self.logger.error("Wrong link status not right, status is %s" % result)
- def get_cbdma_ports_info_and_bind_to_dpdk(self, cbdma_num):
- """
- get all cbdma ports
- """
- out = self.dut.send_expect(
- "./usertools/dpdk-devbind.py --status-dev dma", "# ", 30
- )
- device_info = out.split("\n")
- for device in device_info:
- pci_info = re.search("\s*(0000:\S*:\d*.\d*)", device)
- if pci_info is not None:
- dev_info = pci_info.group(1)
- # the numa id of ioat dev, only add the device which
- # on same socket with nic dev
- bus = int(dev_info[5:7], base=16)
- if bus >= 128:
- cur_socket = 1
- else:
- cur_socket = 0
- if self.ports_socket == cur_socket:
- self.cbdma_dev_infos.append(pci_info.group(1))
- self.verify(
- len(self.cbdma_dev_infos) >= cbdma_num,
- "There no enough cbdma device to run this suite",
- )
- self.used_cbdma = self.cbdma_dev_infos[0:cbdma_num]
- dmas_info = ""
- for dmas in self.used_cbdma:
- number = self.used_cbdma.index(dmas)
- dmas = "txq{}@{};".format(number, dmas)
- dmas_info += dmas
- self.dmas_info = dmas_info[:-1]
- self.device_str = " ".join(self.used_cbdma)
- self.dut.send_expect(
- "./usertools/dpdk-devbind.py --force --bind=%s %s"
- % (self.drivername, self.device_str),
- "# ",
- 60,
- )
-
- def bind_cbdma_device_to_kernel(self):
- if self.device_str is not None:
- self.dut.send_expect("modprobe ioatdma", "# ")
- self.dut.send_expect(
- "./usertools/dpdk-devbind.py -u %s" % self.device_str, "# ", 30
- )
- self.dut.send_expect(
- "./usertools/dpdk-devbind.py --force --bind=ioatdma %s"
- % self.device_str,
- "# ",
- 60,
- )
-
def test_split_ring_virtio_user_interrupt_with_vhost_net_as_backend(self):
"""
Check the virtio-user interrupt can work when use vhost-net as backend
@@ -353,93 +278,12 @@ class TestVirtioUserInterrupt(TestCase):
self.vhost.send_expect("quit", "#", 20)
self.check_virtio_side_link_status("down")
- def test_lsc_event_between_vhost_user_and_virtio_user_with_split_ring_and_cbdma_enabled(
- self,
- ):
- """
- Test Case7: LSC event between vhost-user and virtio-user with split ring and cbdma enabled
- """
- self.get_cbdma_ports_info_and_bind_to_dpdk(1)
- self.start_vhost_testpmd(pci=self.used_cbdma, dmas=self.dmas_info)
- self.start_virtio_user()
- self.check_virtio_side_link_status("up")
- self.vhost.send_expect("quit", "#", 20)
- self.check_virtio_side_link_status("down")
- self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
- self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
- self.close_all_session()
-
- def test_split_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enabled(
- self,
- ):
- """
- Test Case8: Split ring virtio-user interrupt test with vhost-user as backend and cbdma enabled
- """
- self.get_cbdma_ports_info_and_bind_to_dpdk(1)
- self.start_vhost_testpmd(pci="", dmas=self.dmas_info)
- self.launch_l3fwd(path="./vhost-net")
- # double check the status of interrupt core
- for i in range(2):
- self.tester.scapy_append(
- 'pk=[Ether(dst="52:54:00:00:00:01")/IP()/("X"*64)]'
- )
- self.tester.scapy_append(
- 'sendp(pk, iface="%s", count=100)' % self.tx_interface
- )
- self.tester.scapy_execute()
- time.sleep(3)
- self.check_interrupt_log(status="waked up")
- self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
- self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
- self.close_all_session()
-
- def test_lsc_event_between_vhost_user_and_virtio_user_with_packed_ring_and_cbdma_enabled(
- self,
- ):
- """
- Test Case9: LSC event between vhost-user and virtio-user with packed ring and cbdma enabled
- """
- self.get_cbdma_ports_info_and_bind_to_dpdk(1)
- self.start_vhost_testpmd(pci=self.used_cbdma, dmas=self.dmas_info)
- self.start_virtio_user(packed=True)
- self.check_virtio_side_link_status("up")
- self.vhost.send_expect("quit", "#", 20)
- self.check_virtio_side_link_status("down")
- self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
- self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
- self.close_all_session()
-
- def test_packed_ring_virtio_user_interrupt_test_with_vhost_user_as_backend_and_cbdma_enabled(
- self,
- ):
- """
- Test Case10: Packed ring virtio-user interrupt test with vhost-user as backend and cbdma enabled
- """
- self.get_cbdma_ports_info_and_bind_to_dpdk(1)
- self.start_vhost_testpmd(pci="", dmas=self.dmas_info)
- self.launch_l3fwd(path="./vhost-net", packed=True)
- # double check the status of interrupt core
- for i in range(2):
- self.tester.scapy_append(
- 'pk=[Ether(dst="52:54:00:00:00:01")/IP()/("X"*64)]'
- )
- self.tester.scapy_append(
- 'sendp(pk, iface="%s", count=100)' % self.tx_interface
- )
- self.tester.scapy_execute()
- time.sleep(3)
- self.check_interrupt_log(status="waked up")
- self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
- self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
- self.close_all_session()
-
def tear_down(self):
"""
run after each test case.
"""
self.dut.send_expect("killall %s" % self.l3fwdpower_name, "#")
self.dut.send_expect("killall -s INT %s" % self.testpmd_name, "#")
- self.bind_cbdma_device_to_kernel()
self.close_all_session()
def tear_down_all(self):
--
2.25.1
next reply other threads:[~2022-05-19 6:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-19 6:26 Wei Ling [this message]
2022-05-19 9:34 ` Huang, ChenyuX
2022-05-19 12:29 ` He, Xingguang
2022-05-25 10:05 ` lijuan.tu
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=20220519062657.2813076-1-weix.ling@intel.com \
--to=weix.ling@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).