* [dts][PATCH V1 2/2] tests/dpdk_gro_lib_cbdma: modify dmas parameter by DPDK chaneged
@ 2022-12-23 2:14 Wei Ling
2022-12-26 4:59 ` lijuan.tu
0 siblings, 1 reply; 2+ messages in thread
From: Wei Ling @ 2022-12-23 2:14 UTC (permalink / raw)
To: dts; +Cc: Wei Ling
1.Modify dmas parameter by the local patch changed.
2.As DPDK commit 236bc417(app/testpmd: fix MAC header in checksum
forward engine),need to add `csum mac-swap off <port_id>` steps.
Signed-off-by: Wei Ling <weix.ling@intel.com>
---
tests/TestSuite_dpdk_gro_lib_cbdma.py | 31 +++++++++------------------
1 file changed, 10 insertions(+), 21 deletions(-)
diff --git a/tests/TestSuite_dpdk_gro_lib_cbdma.py b/tests/TestSuite_dpdk_gro_lib_cbdma.py
index c77c7075..6d31403b 100644
--- a/tests/TestSuite_dpdk_gro_lib_cbdma.py
+++ b/tests/TestSuite_dpdk_gro_lib_cbdma.py
@@ -2,13 +2,6 @@
# Copyright(c) 2022 Intel Corporation
#
-"""
-DPDK Test suite.
-
-dpdk gro lib test suite.
-In this suite, in order to check the performance of gso lib, will use one
-hostcpu to start qemu and only have one vcpu
-"""
import re
import time
@@ -119,6 +112,8 @@ class TestDPDKGROLibCbdma(TestCase):
def set_testpmd_params(self):
self.vhost_user.send_expect("set fwd csum", "testpmd> ", 120)
+ self.vhost_user.send_expect("csum mac-swap off 0", "testpmd> ", 120)
+ self.vhost_user.send_expect("csum mac-swap off 1", "testpmd> ", 120)
self.vhost_user.send_expect("stop", "testpmd> ", 120)
self.vhost_user.send_expect("port stop 0", "testpmd> ", 120)
self.vhost_user.send_expect("port stop 1", "testpmd> ", 120)
@@ -222,26 +217,20 @@ class TestDPDKGROLibCbdma(TestCase):
"""
self.config_kernel_nic_host()
self.get_cbdma_ports_info_and_bind_to_dpdk(cbdma_num=2)
- lcore_dma = (
- "lcore%s@%s,"
- "lcore%s@%s,"
- "lcore%s@%s,"
+ dmas = (
+ "txq0@%s;"
+ "txq1@%s;"
+ "rxq0@%s;"
+ "rxq1@%s"
% (
- self.vhost_core_list[1],
self.cbdma_list[0],
- self.vhost_core_list[1],
+ self.cbdma_list[0],
self.cbdma_list[1],
- self.vhost_core_list[2],
self.cbdma_list[1],
)
)
- param = (
- "--txd=1024 --rxd=1024 --txq=2 --rxq=2 --nb-cores=2 --lcore-dma=[%s]"
- % lcore_dma
- )
- eal_param = (
- "--vdev 'net_vhost0,iface=vhost-net,queues=2,dmas=[txq0;txq1;rxq0;rxq1]'"
- )
+ param = "--txd=1024 --rxd=1024 --txq=2 --rxq=2 --nb-cores=2"
+ eal_param = "--vdev 'net_vhost0,iface=vhost-net,queues=2,dmas=[%s]'" % dmas
ports = self.cbdma_list
ports.append(self.pci)
self.vhost_pmd.start_testpmd(
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-26 5:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-23 2:14 [dts][PATCH V1 2/2] tests/dpdk_gro_lib_cbdma: modify dmas parameter by DPDK chaneged Wei Ling
2022-12-26 4:59 ` 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).