[V1,2/2] tests/dpdk_gro_lib_cbdma: modify dmas parameter by DPDK chaneged

Message ID 20221223021434.751141-1-weix.ling@intel.com (mailing list archive)
State Accepted
Headers
Series modify dmas parameter by DPDK changed |

Checks

Context Check Description
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test success Testing OK
ci/Intel-dts-doc-test success Testing OK
ci/Intel-dts-suite-test warning SKIPPED

Commit Message

Ling, WeiX Dec. 23, 2022, 2:14 a.m. UTC
  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(-)
  

Comments

Tu, Lijuan Dec. 26, 2022, 4:59 a.m. UTC | #1
On Fri, 23 Dec 2022 10:14:34 +0800, Wei Ling <weix.ling@intel.com> wrote:
> 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>

Acked-by: Lijuan Tu <lijuan.tu@intel.com>
Series applied, thanks
  

Patch

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(