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 697C0A00C5; Sun, 26 Apr 2020 09:30:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 32D691BF9E; Sun, 26 Apr 2020 09:30:54 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 129701BF87 for ; Sun, 26 Apr 2020 09:30:51 +0200 (CEST) IronPort-SDR: uEHm6LLOjzim0lN29HtH6VHxzKHJDIeUJGCmPBJ5uPaKOR+le19juC59qre9RzKWaiUlmknssA rqB5s6PSk3Zg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Apr 2020 00:30:51 -0700 IronPort-SDR: 2rKlFzn+K56MU1T6LI1m7Ztlt4UiduL3uOvgMI+eKU8Wd9CDN3Xs7ttcotKDgPgx8yjzvCx7iw ZbkbJD2coVJA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,319,1583222400"; d="scan'208";a="403893913" Received: from dpdk-lijuan-purley3.sh.intel.com ([10.67.119.2]) by orsmga004.jf.intel.com with ESMTP; 26 Apr 2020 00:30:49 -0700 From: hanyingya To: dts@dpdk.org Cc: hanyingya Date: Sun, 26 Apr 2020 15:29:12 +0800 Message-Id: <20200426072912.107611-1-yingyax.han@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [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" Fix the error that it's unable to receive the frame size above 1500. Signed-off-by: hanyingya --- tests/TestSuite_tso.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = 1 - command_line = "./%s/app/testpmd -c %s -n %d %s -- -i --rxd=512 --txd=512 --burst=32 --rxfreet=64 --mbcache=128 --portmask=%s --txpt=36 --txht=0 --txwt=0 --txfreet=32 --txrst=32 " % (self.target, self.coreMask, self.dut.get_memory_channels(), self.blacklist, self.portMask) + command_line = "./%s/app/testpmd -c %s -n %d %s -- -i --rxd=512 --txd=512 --burst=32 --rxfreet=64 --mbcache=128 --portmask=%s --max-pkt-len=%s --txpt=36 --txht=0 --txwt=0 --txfreet=32 --txrst=32 " % (self.target, self.coreMask, self.dut.get_memory_channels(), self.blacklist, self.portMask, TSO_MTU) info = "Executing PMD using %s\n" % test_cycle['cores'] self.logger.info(info) self.rst_report(info, annex=True) -- 2.17.1