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 2BCD01E3BF for ; Mon, 11 Jun 2018 07:02:22 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jun 2018 22:02:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,500,1520924400"; d="scan'208";a="236067311" Received: from juan.sh.intel.com ([10.67.118.154]) by fmsmga005.fm.intel.com with ESMTP; 10 Jun 2018 22:02:19 -0700 From: Lijuan Tu To: dts@dpdk.org Cc: Lijuan Tu Date: Mon, 11 Jun 2018 21:32:36 +0800 Message-Id: <1528723956-6529-1-git-send-email-lijuan.tu@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [next][PATCH] framework/pmd_output: remove tx-offload setting 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: Mon, 11 Jun 2018 05:02:24 -0000 Remove tx-offload setting from framework. Tx_offload should be controlled by case itself. Signed-off-by: Lijuan Tu --- framework/pmd_output.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index 0c1dfc6..aa9384d 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -101,9 +101,6 @@ class PmdOutput(): return self.command def start_testpmd(self, cores, param='', eal_param='', socket=0): - # in dpdk18.02 need used --tx-offloads param to open hardware features - if "--tx-offloads" not in param: - param += " --tx-offloads=0x8fff" if type(cores) == list: core_list = cores -- 1.8.3.1