test suite reviews and discussions
 help / color / mirror / Atom feed
From: Phanendra Vukkisala <pvukkisala@marvell.com>
To: "Tu, Lijuan" <lijuan.tu@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Cc: Vijaya Bhaskar Annayyolla <avijay@marvell.com>,
	Faisal Masood <fmasood@marvell.com>
Subject: Re: [dts] [PATCH] checksum_offload: Support this test in vector mode
Date: Wed, 26 Jun 2019 10:14:44 +0000	[thread overview]
Message-ID: <MN2PR18MB2704EF7208B3DE2672F6D7C4DDE20@MN2PR18MB2704.namprd18.prod.outlook.com> (raw)
In-Reply-To: <8CE3E05A3F976642AAB0F4675D0AD20E0BAC46D3@SHSMSX101.ccr.corp.intel.com>

Hi Lijuan,

Submitted patch.

Regards,
Phanendra

-----Original Message-----
From: Tu, Lijuan <lijuan.tu@intel.com> 
Sent: Wednesday, June 26, 2019 12:31 PM
To: Phanendra Vukkisala <pvukkisala@marvell.com>; dts@dpdk.org
Cc: Vijaya Bhaskar Annayyolla <avijay@marvell.com>; Faisal Masood <fmasood@marvell.com>
Subject: RE: [dts] [PATCH] checksum_offload: Support this test in vector mode

Hi Phanendra,

Could you please rework the patch, applied failed , maybe because the code baseline changed.

Applying: checksum_offload: Support this test in vector mode
error: patch failed: tests/TestSuite_checksum_offload.py:174
error: tests/TestSuite_checksum_offload.py: patch does not apply Patch failed at 0001 checksum_offload: Support this test in vector mode

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of 
> pvukkisala@marvell.com
> Sent: Friday, June 14, 2019 7:13 PM
> To: dts@dpdk.org
> Cc: avijay@marvell.com; fmasood@marvell.com; Phanendra Vukkisala 
> <pvukkisala@marvell.com>
> Subject: [dts] [PATCH] checksum_offload: Support this test in vector 
> mode
> 
> From: Phanendra Vukkisala <pvukkisala@marvell.com>
> 
> Send and sniff 4 packets to support vector mode cavium  HW stops 
> calculating check sums upon receiving first incorrect checksum. So 
> accept unknown also as bad
> 
> Signed-off-by: Phanendra Vukkisala <pvukkisala@marvell.com>
> ---
>  tests/TestSuite_checksum_offload.py |   13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/TestSuite_checksum_offload.py
> b/tests/TestSuite_checksum_offload.py
> index 6541ba5..d4021b9 100644
> --- a/tests/TestSuite_checksum_offload.py
> +++ b/tests/TestSuite_checksum_offload.py
> @@ -118,7 +118,7 @@ class TestChecksumOffload(TestCase):
>          self.tester.scapy_foreground()
> 
>          for packet_type in packets_sent.keys():
> -            self.tester.scapy_append('sendp([%s], iface="%s")' %
> (packets_sent[packet_type], tx_interface))
> +            self.tester.scapy_append('sendp([%s], iface="%s", count=4)'
> + % (packets_sent[packet_type], tx_interface))
>              self.tester.scapy_execute()
>              out = self.dut.get_session_output(timeout=1)
>              lines = out.split("\r\n") @@ -146,7 +146,10 @@ class 
> TestChecksumOffload(TestCase):
>                                  self.verify("PKT_RX_L4_CKSUM_GOOD" in 
> line, "Packet Rx
> L4 checksum valid-flags error!")
>                                  self.verify("PKT_RX_IP_CKSUM_GOOD" in 
> line, "Packet Rx IP checksum valid-flags error!")
>                              elif (flag == 0):
> -                                self.verify("PKT_RX_L4_CKSUM_BAD" in line, "Packet Rx
> L4 checksum valid-flags error!")
> +                                if self.nic == "cavium_a063":
> +                                    self.verify("PKT_RX_L4_CKSUM_BAD" 
> + in line or
> "PKT_RX_L4_CKSUM_UNKNOWN" in line, "Packet Rx L4 checksum valid-flags
> error!")
> +                                else:
> +                                    self.verify("PKT_RX_L4_CKSUM_BAD"
> + in line, "Packet Rx L4 checksum valid-flags error!")
>                                  self.verify("PKT_RX_IP_CKSUM_BAD" in 
> line, "Packet Rx IP checksum valid-flags error!")
> 
>          self.dut.send_expect("stop", "testpmd>") @@ -174,11 +177,11 
> @@ class TestChecksumOffload(TestCase):
> 
>          self.tester.send_expect("exit()", "#")
> 
> -        inst = self.tester.tcpdump_sniff_packets(intf=rx_interface,
> count=len(packets_sent),
> +        inst = self.tester.tcpdump_sniff_packets(intf=rx_interface,
> + count=len(packets_sent)*4,
>                  filters=[{'layer':'ether', 'config':{'src': 
> sniff_src}}])
> 
>          for packet_type in packets_sent.keys():
> -            self.tester.scapy_append('sendp([%s], iface="%s")' %
> (packets_sent[packet_type], tx_interface))
> +            self.tester.scapy_append('sendp([%s], iface="%s", count=4)'
> + % (packets_sent[packet_type], tx_interface))
> 
>          self.tester.scapy_execute()
>  	p = self.tester.load_tcpdump_sniff_packets(inst)
> @@ -186,7 +189,7 @@ class TestChecksumOffload(TestCase):
>  	reslist =
> [p[i].pktgen.pkt.sprintf("%IP.chksum%;%TCP.chksum%;%UDP.chksum%;%SCTP.
> chksum%") for i in range(nr_packets)]
>  	out = string.join(reslist, ",")
>          packets_received = out.split(',')
> -        self.verify(len(packets_sent) == len(packets_received), "Unexpected
> Packets Drop")
> +        self.verify(len(packets_sent)*4 == len(packets_received), 
> + "Unexpected Packets Drop")
> 
>          for packet_received in packets_received:
>              ip_checksum, tcp_checksum, udp_checksum, sctp_checksum =
> packet_received.split(';')
> --
> 1.7.9.5


  reply	other threads:[~2019-06-26 10:14 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-14 11:12 pvukkisala
2019-06-26  7:01 ` Tu, Lijuan
2019-06-26 10:14   ` Phanendra Vukkisala [this message]
2019-06-26 10:13 pvukkisala
2019-07-03  9:41 ` Tu, Lijuan

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=MN2PR18MB2704EF7208B3DE2672F6D7C4DDE20@MN2PR18MB2704.namprd18.prod.outlook.com \
    --to=pvukkisala@marvell.com \
    --cc=avijay@marvell.com \
    --cc=dts@dpdk.org \
    --cc=fmasood@marvell.com \
    --cc=lijuan.tu@intel.com \
    /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).