* [dts] [dts v3] update checksum offload cmd line
@ 2015-03-05 7:21 huilong xu
2015-03-05 9:22 ` Liu, Yong
0 siblings, 1 reply; 2+ messages in thread
From: huilong xu @ 2015-03-05 7:21 UTC (permalink / raw)
To: dts
update cmdline for dpdk merge pacth "[dpdk-dev] [PATCH v3 06/20] testpmd: replace tx_checksum command by csum"
used csum replace tx_checksum
add --txqflags=0 start parameter when setup testpmd
Signed-off-by: huilong xu <huilongx.xu@intel.com>
---
tests/TestSuite_checksum_offload.py | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/tests/TestSuite_checksum_offload.py b/tests/TestSuite_checksum_offload.py
index 1ebac0f..6277f50 100644
--- a/tests/TestSuite_checksum_offload.py
+++ b/tests/TestSuite_checksum_offload.py
@@ -74,21 +74,21 @@ class TestChecksumOffload(TestCase):
Run before each test case.
"""
if self.dut.want_func_tests:
- self.pmdout.start_testpmd("1S/2C/2T", "--portmask=%s " % (self.portMask) + "--disable-hw-vlan --enable-rx-cksum --crc-strip")
+ self.pmdout.start_testpmd("1S/2C/2T", "--portmask=%s " % (self.portMask) + "--disable-hw-vlan --enable-rx-cksum --crc-strip --txqflags=0")
self.dut.send_expect("set verbose 1", "testpmd>")
self.dut.send_expect("set fwd csum", "testpmd>")
def checksum_enablehw(self, port):
- self.dut.send_expect("tx_checksum set ip hw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set udp hw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set tcp hw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set sctp hw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set ip hw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set udp hw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set tcp hw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set sctp hw %d" % port, "testpmd>")
def checksum_enablesw(self, port):
- self.dut.send_expect("tx_checksum set ip sw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set udp sw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set tcp sw %d" % port, "testpmd>")
- self.dut.send_expect("tx_checksum set sctp sw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set ip sw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set udp sw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set tcp sw %d" % port, "testpmd>")
+ self.dut.send_expect("csum set sctp sw %d" % port, "testpmd>")
def checksum_validate(self, packets_sent, packets_expected):
"""
--
1.7.4.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [dts] [dts v3] update checksum offload cmd line
2015-03-05 7:21 [dts] [dts v3] update checksum offload cmd line huilong xu
@ 2015-03-05 9:22 ` Liu, Yong
0 siblings, 0 replies; 2+ messages in thread
From: Liu, Yong @ 2015-03-05 9:22 UTC (permalink / raw)
To: Xu, HuilongX, dts
Applied. Thanks.
> update cmdline for dpdk merge pacth "[dpdk-dev] [PATCH v3 06/20] testpmd: replace tx_checksum command by csum"
> used csum replace tx_checksum
> add --txqflags=0 start parameter when setup testpmd
>
> Signed-off-by: huilong xu <huilongx.xu@intel.com>
> ---
> tests/TestSuite_checksum_offload.py | 18 +++++++++---------
> 1 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/tests/TestSuite_checksum_offload.py b/tests/TestSuite_checksum_offload.py
> index 1ebac0f..6277f50 100644
> --- a/tests/TestSuite_checksum_offload.py
> +++ b/tests/TestSuite_checksum_offload.py
> @@ -74,21 +74,21 @@ class TestChecksumOffload(TestCase):
> Run before each test case.
> """
> if self.dut.want_func_tests:
> - self.pmdout.start_testpmd("1S/2C/2T", "--portmask=%s " % (self.portMask) + "--disable-hw-vlan --enable-rx-cksum --crc-strip")
> + self.pmdout.start_testpmd("1S/2C/2T", "--portmask=%s " % (self.portMask) + "--disable-hw-vlan --enable-rx-cksum --crc-strip --txqflags=0")
> self.dut.send_expect("set verbose 1", "testpmd>")
> self.dut.send_expect("set fwd csum", "testpmd>")
>
> def checksum_enablehw(self, port):
> - self.dut.send_expect("tx_checksum set ip hw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set udp hw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set tcp hw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set sctp hw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set ip hw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set udp hw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set tcp hw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set sctp hw %d" % port, "testpmd>")
>
> def checksum_enablesw(self, port):
> - self.dut.send_expect("tx_checksum set ip sw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set udp sw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set tcp sw %d" % port, "testpmd>")
> - self.dut.send_expect("tx_checksum set sctp sw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set ip sw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set udp sw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set tcp sw %d" % port, "testpmd>")
> + self.dut.send_expect("csum set sctp sw %d" % port, "testpmd>")
>
> def checksum_validate(self, packets_sent, packets_expected):
> """
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-05 9:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-05 7:21 [dts] [dts v3] update checksum offload cmd line huilong xu
2015-03-05 9:22 ` Liu, Yong
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).