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 F1C9B2C55 for ; Wed, 29 Mar 2017 08:02:41 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP; 28 Mar 2017 23:02:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,239,1486454400"; d="scan'208";a="66301590" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by orsmga002.jf.intel.com with ESMTP; 28 Mar 2017 23:02:39 -0700 From: "xu,gang" To: dts@dpdk.org Cc: "xu,gang" Date: Wed, 29 Mar 2017 14:04:03 +0800 Message-Id: <1490767443-112996-1-git-send-email-gangx.xu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] add --crc-strip param when starting i40evf driver testpmd 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, 29 Mar 2017 06:02:42 -0000 Signed-off-by: xu,gang --- framework/pmd_output.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index 13dcaef..507f771 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -31,10 +31,9 @@ import os import re -from settings import TIMEOUT,PROTOCOL_PACKET_SIZE +from settings import TIMEOUT,PROTOCOL_PACKET_SIZE,get_nic_driver from utils import create_mask - class PmdOutput(): """ @@ -101,6 +100,12 @@ class PmdOutput(): def start_testpmd(self, cores, param='', eal_param='', socket=0): # in dpdk2.0 need used --txqflags param to open hardware features + black_dic = {'i40evf':' --crc-strip'} + for (pci_bus, pci_id) in self.dut.pci_devices_info: + driver = get_nic_driver(pci_id) + if black_dic.has_key(driver): + if black_dic[driver] not in param: + param += black_dic[driver] if "--txqflags" not in param: param += " --txqflags=0" -- 1.9.3