From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 92106A84C for ; Thu, 25 Jan 2018 08:08:00 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2018 23:07:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,409,1511856000"; d="scan'208";a="22417997" Received: from juan.sh.intel.com ([10.67.119.88]) by FMSMGA003.fm.intel.com with ESMTP; 24 Jan 2018 23:07:58 -0800 From: Lijuan Tu To: dts@dpdk.org Cc: Lijuan Tu Date: Thu, 25 Jan 2018 23:43:11 +0800 Message-Id: <1516894993-29702-2-git-send-email-lijuanx.a.tu@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1516894993-29702-1-git-send-email-lijuanx.a.tu@intel.com> References: <1516894993-29702-1-git-send-email-lijuanx.a.tu@intel.com> Subject: [dts] [PATCH v1 1/3] framework: Remove option "tx--offloads" 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: Thu, 25 Jan 2018 07:08:01 -0000 Remove tx-offload configuration , use dpdk default. "tx-offloads" no longer handled by framework but case by case. if offload needed by a feature, it should be handled by 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