* [dts][PATCH V1 4/6] tests/dpdk_gro_lib_cbdma: delete modify dpdk code by dpdk change
@ 2022-06-24 5:31 Wei Ling
0 siblings, 0 replies; only message in thread
From: Wei Ling @ 2022-06-24 5:31 UTC (permalink / raw)
To: dts; +Cc: Wei Ling
According to the dpdk commit 1945c64674(app/testpmd: perform SW IP
checksum for GRO/GSO packets) and commit 8ba1723783(net/vhost:
perform SW checksum in Tx path), no need to modify DPDK code to test.
Signed-off-by: Wei Ling <weix.ling@intel.com>
---
tests/TestSuite_dpdk_gro_lib_cbdma.py | 58 ---------------------------
1 file changed, 58 deletions(-)
diff --git a/tests/TestSuite_dpdk_gro_lib_cbdma.py b/tests/TestSuite_dpdk_gro_lib_cbdma.py
index 50eb58c5..22be91bf 100644
--- a/tests/TestSuite_dpdk_gro_lib_cbdma.py
+++ b/tests/TestSuite_dpdk_gro_lib_cbdma.py
@@ -55,7 +55,6 @@ class TestDPDKGROLibCbdma(TestCase):
self.socket_mem = "1024"
else:
self.socket_mem = "1024,1024"
- self.prepare_dpdk()
self.base_dir = self.dut.base_dir.replace("~", "/root")
self.ports_socket = self.dut.get_numa_id(self.dut_ports[0])
self.vhost_user = self.dut.new_session(suite="vhost-user")
@@ -148,62 +147,6 @@ class TestDPDKGROLibCbdma(TestCase):
"ip netns exec ns1 ethtool -K %s tso on" % self.nic_in_kernel, "#"
)
- def prepare_dpdk(self):
- # Changhe the testpmd checksum fwd code for mac change
- self.dut.send_expect(
- "cp ./app/test-pmd/csumonly.c ./app/test-pmd/csumonly_backup.c", "#"
- )
- self.dut.send_expect(
- "cp ./drivers/net/vhost/rte_eth_vhost.c ./drivers/net/vhost/rte_eth_vhost-backup.c",
- "#",
- )
- self.dut.send_expect(
- "sed -i '/ether_addr_copy(&peer_eth/i\#if 0' ./app/test-pmd/csumonly.c", "#"
- )
- self.dut.send_expect(
- "sed -i '/parse_ethernet(eth_hdr, &info/i\#endif' ./app/test-pmd/csumonly.c",
- "#",
- )
- # change offload of vhost
- tx_offload = (
- "RTE_ETH_TX_OFFLOAD_VLAN_INSERT | "
- + "RTE_ETH_TX_OFFLOAD_UDP_CKSUM | "
- + "RTE_ETH_TX_OFFLOAD_TCP_CKSUM | "
- + "RTE_ETH_TX_OFFLOAD_IPV4_CKSUM | "
- + "RTE_ETH_TX_OFFLOAD_TCP_TSO;"
- )
- rx_offload = (
- "RTE_ETH_RX_OFFLOAD_VLAN_STRIP | "
- + "RTE_ETH_RX_OFFLOAD_TCP_CKSUM | "
- + "RTE_ETH_RX_OFFLOAD_UDP_CKSUM | "
- + "RTE_ETH_RX_OFFLOAD_IPV4_CKSUM | "
- + "RTE_ETH_RX_OFFLOAD_TCP_LRO;"
- )
- self.dut.send_expect(
- "sed -i 's/RTE_ETH_TX_OFFLOAD_VLAN_INSERT;/%s/' drivers/net/vhost/rte_eth_vhost.c"
- % tx_offload,
- "#",
- )
- self.dut.send_expect(
- "sed -i 's/RTE_ETH_RX_OFFLOAD_VLAN_STRIP;/%s/' drivers/net/vhost/rte_eth_vhost.c"
- % rx_offload,
- "#",
- )
- self.dut.build_install_dpdk(self.dut.target)
-
- def unprepare_dpdk(self):
- # Recovery the DPDK code to original
- self.dut.send_expect(
- "cp ./app/test-pmd/csumonly_backup.c ./app/test-pmd/csumonly.c ", "#"
- )
- self.dut.send_expect(
- "cp ./drivers/net/vhost/rte_eth_vhost-backup.c ./drivers/net/vhost/rte_eth_vhost.c ",
- "#",
- )
- self.dut.send_expect("rm -rf ./app/test-pmd/csumonly_backup.c", "#")
- self.dut.send_expect("rm -rf ./drivers/net/vhost/rte_eth_vhost-backup.c", "#")
- self.dut.build_install_dpdk(self.dut.target)
-
def set_vm_cpu_number(self, vm_config):
# config the vcpu numbers = 1
# config the cpupin only have one core
@@ -348,7 +291,6 @@ class TestDPDKGROLibCbdma(TestCase):
"""
Run after each test suite.
"""
- self.unprepare_dpdk()
self.dut.send_expect("ip netns del ns1", "# ", 30)
self.dut.send_expect("./usertools/dpdk-devbind.py -u %s" % (self.pci), "# ", 30)
self.dut.send_expect(
--
2.25.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-06-24 5:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-24 5:31 [dts][PATCH V1 4/6] tests/dpdk_gro_lib_cbdma: delete modify dpdk code by dpdk change Wei Ling
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).