From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4CE48A00BE; Mon, 27 Apr 2020 09:54:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 44E191C193; Mon, 27 Apr 2020 09:54:09 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 30F011BF8E for ; Mon, 27 Apr 2020 09:54:07 +0200 (CEST) IronPort-SDR: 77drptFqFcbFwLrUewgZUYofrGcRHrTjRaM7Mdm/0YtXSSZu+F4jYN4739r1FjKe+f59DMsgGH QuesUWGafbIg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Apr 2020 00:54:04 -0700 IronPort-SDR: GfAgIG+WkHh/6Bu5O/B86ND9hjCqgB8mRTQFK7jd2qCpVra8yRZXUwmOvONdjmttJYxxLsBH4+ QS0g5lChMlOQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,323,1583222400"; d="scan'208";a="247306315" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga007.fm.intel.com with ESMTP; 27 Apr 2020 00:53:50 -0700 Received: from fmsmsx117.amr.corp.intel.com (10.18.116.17) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 27 Apr 2020 00:53:50 -0700 Received: from shsmsx154.ccr.corp.intel.com (10.239.6.54) by fmsmsx117.amr.corp.intel.com (10.18.116.17) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 27 Apr 2020 00:53:50 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.129]) by SHSMSX154.ccr.corp.intel.com ([169.254.7.214]) with mapi id 14.03.0439.000; Mon, 27 Apr 2020 15:51:14 +0800 From: "Tu, Lijuan" To: "Han, YingyaX" , "dts@dpdk.org" CC: "Han, YingyaX" Thread-Topic: [dts] [PATCH V1]tests/tso:fix the error of receiving large packets Thread-Index: AQHWG5yte13CcbnOh0OV71XQrQdf+KiMmgNQ Date: Mon, 27 Apr 2020 07:51:13 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BC12AA3@SHSMSX101.ccr.corp.intel.com> References: <20200426072912.107611-1-yingyax.han@intel.com> In-Reply-To: <20200426072912.107611-1-yingyax.han@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V1]tests/tso:fix the error of receiving large packets X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of hanyingya > Sent: Sunday, April 26, 2020 3:29 PM > To: dts@dpdk.org > Cc: Han, YingyaX > Subject: [dts] [PATCH V1]tests/tso:fix the error of receiving large packe= ts >=20 > Fix the error that it's unable to receive the frame size above 1500. >=20 > Signed-off-by: hanyingya > --- > tests/TestSuite_tso.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/tests/TestSuite_tso.py b/tests/TestSuite_tso.py index > 51c0961..eaafd9a 100644 > --- a/tests/TestSuite_tso.py > +++ b/tests/TestSuite_tso.py > @@ -407,7 +407,7 @@ class TestTSO(TestCase): > else: > queues =3D 1 >=20 > - command_line =3D "./%s/app/testpmd -c %s -n %d %s -- -i --rx= d=3D512 -- > txd=3D512 --burst=3D32 --rxfreet=3D64 --mbcache=3D128 --portmask=3D%s --t= xpt=3D36 -- > txht=3D0 --txwt=3D0 --txfreet=3D32 --txrst=3D32 " % (self.target, self.co= reMask, > self.dut.get_memory_channels(), self.blacklist, self.portMask) > + command_line =3D "./%s/app/testpmd -c %s -n %d %s -- -i > + --rxd=3D512 --txd=3D512 --burst=3D32 --rxfreet=3D64 --mbcache=3D128 > + --portmask=3D%s --max-pkt-len=3D%s --txpt=3D36 --txht=3D0 --txwt=3D0 > + --txfreet=3D32 --txrst=3D32 " % (self.target, self.coreMask, > + self.dut.get_memory_channels(), self.blacklist, self.portMask, > + TSO_MTU) > info =3D "Executing PMD using %s\n" % test_cycle['cores'] > self.logger.info(info) > self.rst_report(info, annex=3DTrue) > -- > 2.17.1