test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd
@ 2021-03-05  6:11 Xia Yan
  2021-03-05  6:40 ` Zhao, HaiyangX
  2021-03-10  6:00 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: Xia Yan @ 2021-03-05  6:11 UTC (permalink / raw)
  To: dts; +Cc: Xia Yan

launch testpmd with "--max-pkt-len=9500 --tx-offloads=0x8000 --enable-scatter -a" add ixgbe

Signed-off-by: Xia Yan <yanx.xia@intel.com>
---
 tests/TestSuite_mtu_update.py | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/tests/TestSuite_mtu_update.py b/tests/TestSuite_mtu_update.py
index 239272f2..5fa17c97 100644
--- a/tests/TestSuite_mtu_update.py
+++ b/tests/TestSuite_mtu_update.py
@@ -108,8 +108,12 @@ class TestMtuUpdate(TestCase):
         # The packet total size include ethernet header, ip header, and payload.
         # ethernet header length is 18 bytes, ip standard header length is 20 bytes.
         # pktlen = pktsize - ETHER_HEADER_LEN
-        max_pktlen = pktsize + ETHER_HEADER_LEN + VLAN * 2
-        padding = max_pktlen - IP_HEADER_LEN - ETHER_HEADER_LEN
+        if self.kdriver == "ixgbe":
+            max_pktlen = pktsize + ETHER_HEADER_LEN + VLAN
+            padding = max_pktlen - IP_HEADER_LEN - ETHER_HEADER_LEN-VLAN
+        else:
+            max_pktlen = pktsize + ETHER_HEADER_LEN + VLAN * 2
+            padding = max_pktlen - IP_HEADER_LEN - ETHER_HEADER_LEN
         out = self.send_scapy_packet(port_id,
                                      f'Ether(dst=dutmac, src="52:00:00:00:00:00")/IP()/Raw(load="\x50"*{padding})')
         return out
@@ -222,18 +226,17 @@ class TestMtuUpdate(TestCase):
         """
         Sends a packet of the given size into the testing machine.
         """
-        if self.kdriver == "mlx5_core" or self.kdriver == "mlx4_core":
+        if self.kdriver == "mlx5_core" or self.kdriver == "mlx4_core" or self.kdriver == "ixgbe":
         # Mellanox will need extra options to start testpmd
             self.pmdout.start_testpmd("Default", "--max-pkt-len=9500 --tx-offloads=0x8000 --enable-scatter -a")
         else:
             self.pmdout.start_testpmd("Default")
-        
+
         self.exec("port stop all")
         self.exec(f"port config mtu 0 {packet_size:d}")
         self.exec(f"port config mtu 1 {packet_size:d}")
         self.verify(int(self.pmdout.get_detail_from_port_info("MTU: ", "\d+", 0)) == packet_size, "MTU did not update")
         self.verify(int(self.pmdout.get_detail_from_port_info("MTU: ", "\d+", 1)) == packet_size, "MTU did not update")
-
         self.exec("port start all")
         self.exec("set fwd mac")
         self.exec("start")
-- 
2.17.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd
  2021-03-05  6:11 [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd Xia Yan
@ 2021-03-05  6:40 ` Zhao, HaiyangX
  2021-03-10  6:00 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Zhao, HaiyangX @ 2021-03-05  6:40 UTC (permalink / raw)
  To: Xia, YanX, dts; +Cc: Xia, YanX



> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Xia Yan
> Sent: Friday, March 5, 2021 14:11
> To: dts@dpdk.org
> Cc: Xia, YanX <yanx.xia@intel.com>
> Subject: [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd
> 
> launch testpmd with "--max-pkt-len=9500 --tx-offloads=0x8000 --enable-
> scatter -a" add ixgbe

Acked-by: Haiyang Zhao <haiyangx.zhao@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd
  2021-03-05  6:11 [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd Xia Yan
  2021-03-05  6:40 ` Zhao, HaiyangX
@ 2021-03-10  6:00 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-03-10  6:00 UTC (permalink / raw)
  To: Xia, YanX, dts; +Cc: Xia, YanX

> launch testpmd with "--max-pkt-len=9500 --tx-offloads=0x8000 --enable-scatter
> -a" add ixgbe
> 
> Signed-off-by: Xia Yan <yanx.xia@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-10  6:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-05  6:11 [dts] [PATCH V2] tests/mtu_update: change ixgbe launch testpmd Xia Yan
2021-03-05  6:40 ` Zhao, HaiyangX
2021-03-10  6:00 ` Tu, Lijuan

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).