From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 10721377A for ; Fri, 21 Apr 2017 09:31:23 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Apr 2017 00:31:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,229,1488873600"; d="scan'208";a="251800818" Received: from stv-crb-08.sh.intel.com (HELO dpdk-test60.sh.intel.com) ([10.239.128.48]) by fmsmga004.fm.intel.com with ESMTP; 21 Apr 2017 00:31:20 -0700 From: Xueqin Lin To: dts@dpdk.org Cc: Xueqin Lin Date: Thu, 20 Apr 2017 21:27:32 -0400 Message-Id: <1492738052-9493-1-git-send-email-xueqin.lin@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH] Remove crc-strip parameter due to adding defaultly in dpdk. 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: Fri, 21 Apr 2017 07:31:24 -0000 --- framework/pmd_output.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index f52332b..ca361a7 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -101,12 +101,6 @@ class PmdOutput(): def start_testpmd(self, cores, param='', eal_param='', socket=0): # in dpdk2.0 need used --txqflags param to open hardware features - default_param = {'i40evf': ' --crc-strip'} - for (pci_bus, pci_id) in self.dut.pci_devices_info: - driver = get_nic_driver(pci_id) - if default_param.has_key(driver): - if default_param[driver] not in param: - param += default_param[driver] if "--txqflags" not in param: param += " --txqflags=0" -- 2.5.5