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/dpdk_gro_lib_cbdma: modify dmas parameter by DPDK chaneged
Date: Fri, 23 Dec 2022 10:14:34 +0800 [thread overview]
Message-ID: <20221223021434.751141-1-weix.ling@intel.com> (raw)
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
next reply other threads:[~2022-12-23 2:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-23 2:14 Wei Ling [this message]
2022-12-26 4:59 ` 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=20221223021434.751141-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).