From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 05AD75A36 for ; Wed, 20 May 2015 11:25:01 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 20 May 2015 02:24:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,464,1427785200"; d="scan'208";a="574160918" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by orsmga003.jf.intel.com with ESMTP; 20 May 2015 02:24:59 -0700 Received: from shecgisg003.sh.intel.com (shecgisg003.sh.intel.com [10.239.29.90]) by shvmail01.sh.intel.com with ESMTP id t4K9Ovpm006859; Wed, 20 May 2015 17:24:57 +0800 Received: from shecgisg003.sh.intel.com (localhost [127.0.0.1]) by shecgisg003.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id t4K9OtNr010514; Wed, 20 May 2015 17:24:57 +0800 Received: (from huilongx@localhost) by shecgisg003.sh.intel.com (8.13.6/8.13.6/Submit) id t4K9OsFH010510; Wed, 20 May 2015 17:24:54 +0800 From: huilongx xu To: dts@dpdk.org Date: Wed, 20 May 2015 17:24:54 +0800 Message-Id: <1432113894-10479-1-git-send-email-huilongx.xu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [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:02 -0000 From: huilong xu used --txqflags replace --txqflags=0 Signed-off-by: huilong xu --- framework/pmd_output.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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='', eal_param='', socket=0): # in dpdk2.0 need used --txqflags param to open hardware features if "--txqflags" not in param: - param += " --txqflags" + param += " --txqflags=0" if cores == "Default": core_list = self.dut.get_core_list(self.default_cores) -- 1.7.4.4