From patchwork Tue Jan 17 18:01:47 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 19633 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 53A4F2BF2; Tue, 17 Jan 2017 19:02:09 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 42B1C11DE for ; Tue, 17 Jan 2017 19:01:57 +0100 (CET) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP; 17 Jan 2017 10:01:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,245,1477983600"; d="scan'208";a="49764519" Received: from sivswdev02.ir.intel.com ([10.237.217.46]) by orsmga004.jf.intel.com with ESMTP; 17 Jan 2017 10:01:51 -0800 From: Ferruh Yigit To: dev@dpdk.org Cc: Ferruh Yigit Date: Tue, 17 Jan 2017 18:01:47 +0000 Message-Id: <20170117180147.11247-2-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20170117180147.11247-1-ferruh.yigit@intel.com> References: <20170117180147.11247-1-ferruh.yigit@intel.com> Subject: [dpdk-dev] [PATCH 2/2] config: disable KNI ethtool by default X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" KNI ethtool support (KNI control path) is not commonly used, and it tends to break the build with new version of the Linux kernel. KNI ethtool feature is disabled by default. KNI datapath is not effected from this update. It is possible to enable feature explicitly with config option: "CONFIG_RTE_KNI_KMOD_ETHTOOL=y" Signed-off-by: Ferruh Yigit Acked-by: Thomas Monjalon --- config/common_linuxapp | 1 - 1 file changed, 1 deletion(-) diff --git a/config/common_linuxapp b/config/common_linuxapp index d4c4f0c..2483dfa 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -38,7 +38,6 @@ CONFIG_RTE_EXEC_ENV_LINUXAPP=y CONFIG_RTE_EAL_IGB_UIO=y CONFIG_RTE_EAL_VFIO=y CONFIG_RTE_KNI_KMOD=y -CONFIG_RTE_KNI_KMOD_ETHTOOL=y CONFIG_RTE_LIBRTE_KNI=y CONFIG_RTE_LIBRTE_VHOST=y CONFIG_RTE_LIBRTE_PMD_VHOST=y