From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 182025A36 for ; Wed, 20 May 2015 11:25:44 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 20 May 2015 02:25:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,464,1427785200"; d="scan'208";a="732322185" Received: from kmsmsx153.gar.corp.intel.com ([172.21.73.88]) by orsmga002.jf.intel.com with ESMTP; 20 May 2015 02:25:43 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by KMSMSX153.gar.corp.intel.com (172.21.73.88) with Microsoft SMTP Server (TLS) id 14.3.224.2; Wed, 20 May 2015 17:25:42 +0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.23]) by SHSMSX101.ccr.corp.intel.com ([10.239.4.153]) with mapi id 14.03.0224.002; Wed, 20 May 2015 17:25:41 +0800 From: "Liu, Yong" To: "Xu, HuilongX" , "dts@dpdk.org" Thread-Topic: [dts] fix testpmd start failed when used pmd_output Thread-Index: AQHQkt7gt/q7ISPDOkOaE2k3NIg9qp2EmBiw Date: Wed, 20 May 2015 09:25:41 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E10E2587C@SHSMSX103.ccr.corp.intel.com> References: <1432113894-10479-1-git-send-email-huilongx.xu@intel.com> In-Reply-To: <1432113894-10479-1-git-send-email-huilongx.xu@intel.com> Accept-Language: zh-CN, 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] fix testpmd start failed when used pmd_output 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: Wed, 20 May 2015 09:25:45 -0000 Applied. Thanks. > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of huilongx xu > Sent: Wednesday, May 20, 2015 5:25 PM > To: dts@dpdk.org > Subject: [dts] fix testpmd start failed when used pmd_output >=20 > From: huilong xu >=20 > used --txqflags replace --txqflags=3D0 >=20 > Signed-off-by: huilong xu > --- > framework/pmd_output.py | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) >=20 > diff --git a/framework/pmd_output.py b/framework/pmd_output.py > index 3c8d5a2..473339d 100644 > --- a/framework/pmd_output.py > +++ b/framework/pmd_output.py > @@ -101,7 +101,7 @@ class PmdOutput(): > def start_testpmd(self, cores, param=3D'', eal_param=3D'', socket=3D= 0): > # in dpdk2.0 need used --txqflags param to open hardware feature= s > if "--txqflags" not in param: > - param +=3D " --txqflags" > + param +=3D " --txqflags=3D0" >=20 > if cores =3D=3D "Default": > core_list =3D self.dut.get_core_list(self.default_cores) > -- > 1.7.4.4