From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 56306A00D7; Thu, 31 Oct 2019 14:04:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 064B01C1F1; Thu, 31 Oct 2019 14:04:50 +0100 (CET) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id A4B321C1F0 for ; Thu, 31 Oct 2019 14:04:48 +0100 (CET) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id D50AB1A0547; Thu, 31 Oct 2019 14:04:47 +0100 (CET) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id DFDE31A0205; Thu, 31 Oct 2019 14:04:44 +0100 (CET) Received: from GDB1.ap.freescale.net (gdb1.ap.freescale.net [10.232.132.179]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id C35C5402B7; Thu, 31 Oct 2019 21:04:40 +0800 (SGT) From: Nipun Gupta To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, hemant.agrawal@nxp.com, sachin.saxena@nxp.com, Nipun Gupta Date: Thu, 31 Oct 2019 18:18:35 +0530 Message-Id: <20191031124835.29927-1-nipun.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191004111106.30267-1-nipun.gupta@nxp.com> References: <20191004111106.30267-1-nipun.gupta@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH v2] config: disable 1588 timer support on DPAA2 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" This patch disables the 1588 timer support by default on DPAA2 platform due to the performance impact. By default it is disabled in the common/base, so remove the entry from DPAA2. Signed-off-by: Nipun Gupta --- Changes in v2: - Change only the 1588 timestamp option in DPAA2 and do not touch the CONFIG_RTE_LIBRTE_DPAA2_USE_PHYS_IOVA option. config/defconfig_arm64-dpaa2-linuxapp-gcc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/defconfig_arm64-dpaa2-linuxapp-gcc b/config/defconfig_arm64-dpaa2-linuxapp-gcc index 5c7eddd5e..b2ccbec0c 100644 --- a/config/defconfig_arm64-dpaa2-linuxapp-gcc +++ b/config/defconfig_arm64-dpaa2-linuxapp-gcc @@ -15,8 +15,8 @@ CONFIG_RTE_CACHE_LINE_SIZE=64 CONFIG_RTE_PKTMBUF_HEADROOM=128 -# Enable IEEE1588, Keep it disable by default -CONFIG_RTE_LIBRTE_IEEE1588=y +# Disable IEEE1588 by default +CONFIG_RTE_LIBRTE_IEEE1588=n # Doesn't support NUMA CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n -- 2.17.1