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 5B99BA04F9; Fri, 10 Jan 2020 08:30:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 529C11E8B7; Fri, 10 Jan 2020 08:30:04 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 90F251E553 for ; Fri, 10 Jan 2020 08:30:02 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2020 23:30:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,415,1571727600"; d="scan'208";a="422026238" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga005.fm.intel.com with ESMTP; 09 Jan 2020 23:30:01 -0800 Received: from fmsmsx120.amr.corp.intel.com (10.18.124.208) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 9 Jan 2020 23:30:01 -0800 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by fmsmsx120.amr.corp.intel.com (10.18.124.208) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 9 Jan 2020 23:30:00 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.30]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.245]) with mapi id 14.03.0439.000; Fri, 10 Jan 2020 15:29:59 +0800 From: "Tu, Lijuan" To: "Xie, WeiX" , "dts@dpdk.org" CC: "Zhao, HaiyangX" , "Xie, WeiX" Thread-Topic: [dts] [PATCH V1] tests/port_representor:set the number of mbufs Thread-Index: AQHVx4UqLmimyNaQvUO7qmP94KEpmKfjgHgQ Date: Fri, 10 Jan 2020 07:29:58 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBA54F9@SHSMSX101.ccr.corp.intel.com> References: <1578640580-35594-1-git-send-email-weix.xie@intel.com> In-Reply-To: <1578640580-35594-1-git-send-email-weix.xie@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/port_representor:set the number of mbufs 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 > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Xie Wei > Sent: Friday, January 10, 2020 3:16 PM > To: dts@dpdk.org > Cc: Zhao, HaiyangX ; Xie, WeiX > > Subject: [dts] [PATCH V1] tests/port_representor:set the number of mbufs >=20 > From: Haiyang Zhao >=20 > Set the number of mbufs to fix not enough memory on i686 architecture >=20 > Signed-off-by: Xie Wei > --- > tests/TestSuite_port_representor.py | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/tests/TestSuite_port_representor.py > b/tests/TestSuite_port_representor.py > index 4bf7274..893123a 100644 > --- a/tests/TestSuite_port_representor.py > +++ b/tests/TestSuite_port_representor.py > @@ -104,14 +104,14 @@ class TestPortRepresentor(TestCase): > self.vf_flag =3D 0 >=20 > def testpmd_pf(self): > - self.pmdout_pf.start_testpmd("Default", eal_param=3D"- > w %s,representor=3D0-1" % self.pf_pci, param=3D"--port-topology=3Dchained= ") > + self.pmdout_pf.start_testpmd("Default", eal_param=3D"- > w %s,representor=3D0-1" % self.pf_pci, param=3D"--port-topology=3Dchained= -- > total-num-mbufs=3D120000") >=20 > def testpmd_vf0(self): > - self.out_vf0 =3D self.pmdout_vf0.start_testpmd("Default", eal_pa= ram=3D"- > w %s --file-prefix testpmd-vf0" % self.vfs_pci[0]) > + self.out_vf0 =3D self.pmdout_vf0.start_testpmd("Default", eal_pa= ram=3D"- > w %s --file-prefix testpmd-vf0" % self.vfs_pci[0], param=3D"--total-num- > mbufs=3D120000") > self.vf0_mac =3D self.pmdout_vf0.get_port_mac(0) >=20 > def testpmd_vf1(self): > - self.out_vf1 =3D self.pmdout_vf1.start_testpmd("Default", eal_pa= ram=3D"- > w %s --file-prefix testpmd-vf1" % self.vfs_pci[1]) > + self.out_vf1 =3D self.pmdout_vf1.start_testpmd("Default", eal_pa= ram=3D"- > w %s --file-prefix testpmd-vf1" % self.vfs_pci[1], param=3D"--total-num- > mbufs=3D120000") > self.vf1_mac =3D self.pmdout_vf1.get_port_mac(0) >=20 > def check_port_stats(self): > -- > 2.17.2