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 C88949E3 for ; Fri, 28 Apr 2017 10:45:12 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP; 28 Apr 2017 01:45:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,387,1488873600"; d="scan'208";a="254532453" 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; 28 Apr 2017 01:45:05 -0700 From: Xueqin Lin To: dts@dpdk.org Cc: Xueqin Lin Date: Thu, 27 Apr 2017 22:41:16 -0400 Message-Id: <1493347276-9351-1-git-send-email-xueqin.lin@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH v2] 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, 28 Apr 2017 08:45:13 -0000 i40e VF HW crc-strip default enabled after commit 60da774e. --- 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