[dts] [dts v3] update checksum offload cmd line

Liu, Yong yong.liu at intel.com
Thu Mar 5 10:22:50 CET 2015


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 at 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):
>          """



More information about the dts mailing list