From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 6DB009E3 for ; Fri, 21 Apr 2017 09:10:21 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP; 21 Apr 2017 00:10:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,229,1488873600"; d="scan'208";a="77113948" Received: from stv-crb-08.sh.intel.com (HELO dpdk-test60.sh.intel.com) ([10.239.128.48]) by orsmga002.jf.intel.com with ESMTP; 21 Apr 2017 00:10:19 -0700 From: Xueqin Lin To: dts@dpdk.org Cc: Xueqin Lin Date: Thu, 20 Apr 2017 21:06:30 -0400 Message-Id: <1492736790-8092-1-git-send-email-xueqin.lin@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH] Remove crc-strip parameter when launching i40e VF testpmd 60da774e6e59ea1d4eee324920c1fb56af00d17e this patch has been fixed as default to enable HW CRC strip to let VF launch successfully. 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:10:21 -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