From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 272F027D for ; Thu, 21 Feb 2019 07:21:07 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Feb 2019 22:21:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,393,1544515200"; d="scan'208";a="128126120" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga003.jf.intel.com with ESMTP; 20 Feb 2019 22:21:06 -0800 Received: from fmsmsx153.amr.corp.intel.com (10.18.125.6) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 20 Feb 2019 22:21:05 -0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX153.amr.corp.intel.com (10.18.125.6) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 20 Feb 2019 22:21:05 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.207]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.109]) with mapi id 14.03.0415.000; Thu, 21 Feb 2019 14:21:03 +0800 From: "Yao, BingX Y" To: "Zhao, MeijuanX" , "dts@dpdk.org" CC: "Zhao, MeijuanX" Thread-Topic: [dts] [PATCH V1 2/2] tests/vf makfilter: add rxq txq for host testpmd in ixgbe Thread-Index: AQHUyZTTX+cQUS8TCE6ZQ/1MOIX19aXpx8iA Date: Thu, 21 Feb 2019 06:21:03 +0000 Message-ID: <95BCD24840F32441BEA74E0F8A31839E04EF38E8@shsmsx102.ccr.corp.intel.com> References: <1550719621-42765-1-git-send-email-meijuanx.zhao@intel.com> <1550719621-42765-2-git-send-email-meijuanx.zhao@intel.com> In-Reply-To: <1550719621-42765-2-git-send-email-meijuanx.zhao@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: 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 2/2] tests/vf makfilter: add rxq txq for host testpmd in ixgbe 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: , X-List-Received-Date: Thu, 21 Feb 2019 06:21:07 -0000 Tested-by: yaobing -----Original Message----- From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhao,meijuan Sent: Thursday, February 21, 2019 11:27 AM To: dts@dpdk.org Cc: Zhao, MeijuanX Subject: [dts] [PATCH V1 2/2] tests/vf makfilter: add rxq txq for host test= pmd in ixgbe Signed-off-by: zhao,meijuan --- tests/TestSuite_vf_macfilter.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_vf_macfilter.py b/tests/TestSuite_vf_macfilter= .py index 4860120..063ecda 100644 --- a/tests/TestSuite_vf_macfilter.py +++ b/tests/TestSuite_vf_macfilter.py @@ -69,7 +69,10 @@ class TestVfMacFilter(TestCase): self.host_testpmd =3D PmdOutput(self.dut) eal_param =3D '-b %(vf0)s -b %(vf1)s' % {'vf0': self.sriov= _vfs_port_0[0].pci, 'vf1': self.sriov_v= fs_port_1[0].pci} - self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=3Dea= l_param) + if (self.nic in ["niantic", "sageville", "sagepond"]): + self.host_testpmd.start_testpmd("1S/9C/1T", "--txq=3D4= --rxq=3D4 ", eal_param=3Deal_param) + else: + self.host_testpmd.start_testpmd("1S/2C/2T",=20 + eal_param=3Deal_param) =20 # set up VM0 ENV self.vm0 =3D VM(self.dut, 'vm0', 'vf_macfilter') -- 2.17.2