* [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps
@ 2022-06-24 6:55 Wei Ling
2022-06-24 7:09 ` Huang, ChenyuX
2022-06-29 2:17 ` lijuan.tu
0 siblings, 2 replies; 3+ messages in thread
From: Wei Ling @ 2022-06-24 6:55 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>
---
...stSuite_virtio_user_as_exceptional_path.py | 26 -------------------
1 file changed, 26 deletions(-)
diff --git a/tests/TestSuite_virtio_user_as_exceptional_path.py b/tests/TestSuite_virtio_user_as_exceptional_path.py
index 1f7d8330..c5105d5f 100644
--- a/tests/TestSuite_virtio_user_as_exceptional_path.py
+++ b/tests/TestSuite_virtio_user_as_exceptional_path.py
@@ -44,7 +44,6 @@ class TestVirtioUserAsExceptionalPath(TestCase):
self.socket_mem = "1024,1024"
self.pktgen_helper = PacketGeneratorHelper()
self.peer_pci_setup = False
- self.prepare_dpdk()
self.app_testpmd_path = self.dut.apps_name["test-pmd"]
self.testpmd_name = self.app_testpmd_path.split("/")[-1]
@@ -181,30 +180,6 @@ class TestVirtioUserAsExceptionalPath(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(
- "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",
- "#",
- )
- self.dut.build_install_dpdk(self.dut.target)
- time.sleep(3)
-
- 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("rm -rf ./app/test-pmd/csumonly_backup.c", "#")
- self.dut.build_install_dpdk(self.dut.target)
-
def iperf_result_verify(self, vm_client, direction):
"""
Get the iperf test result
@@ -375,7 +350,6 @@ class TestVirtioUserAsExceptionalPath(TestCase):
for i in self.dut_ports:
port = self.dut.ports_info[i]["port"]
port.bind_driver(self.def_driver)
- self.unprepare_dpdk()
if self.peer_pci_setup:
self.dut.send_expect(
"./usertools/dpdk-devbind.py -u %s" % (self.pci), "# ", 30
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps
2022-06-24 6:55 [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps Wei Ling
@ 2022-06-24 7:09 ` Huang, ChenyuX
2022-06-29 2:17 ` lijuan.tu
1 sibling, 0 replies; 3+ messages in thread
From: Huang, ChenyuX @ 2022-06-24 7:09 UTC (permalink / raw)
To: Ling, WeiX, dts; +Cc: Ling, WeiX
> -----Original Message-----
> From: Wei Ling <weix.ling@intel.com>
> Sent: Friday, June 24, 2022 2:55 PM
> To: dts@dpdk.org
> Cc: Ling, WeiX <weix.ling@intel.com>
> Subject: [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete
> modify dpdk code steps
>
> 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>
> ---
Tested-by: Chenyu Huang <chenyux.huang@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps
2022-06-24 6:55 [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps Wei Ling
2022-06-24 7:09 ` Huang, ChenyuX
@ 2022-06-29 2:17 ` lijuan.tu
1 sibling, 0 replies; 3+ messages in thread
From: lijuan.tu @ 2022-06-29 2:17 UTC (permalink / raw)
To: dts, Wei Ling; +Cc: Wei Ling
On Fri, 24 Jun 2022 02:55:29 -0400, Wei Ling <weix.ling@intel.com> wrote:
> 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>
Series applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-29 2:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-24 6:55 [dts][PATCH V1 2/2] tests/virtio_user_as_exceptional_path: delete modify dpdk code steps Wei Ling
2022-06-24 7:09 ` Huang, ChenyuX
2022-06-29 2:17 ` 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).