Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752651AbcJKALT (ORCPT ); Mon, 10 Oct 2016 20:11:19 -0400 Received: from terminus.zytor.com ([198.137.202.10]:51650 "EHLO mail.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752499AbcJKALR (ORCPT ); Mon, 10 Oct 2016 20:11:17 -0400 User-Agent: K-9 Mail for Android In-Reply-To: <20161010214538.8824-1-rsalvaterra@gmail.com> References: <20161010214538.8824-1-rsalvaterra@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Subject: Re: [RFC] [PATCH] arch: x86: change GCC optimisation target from atom to bonnell From: hpa@zytor.com Date: Mon, 10 Oct 2016 17:11:00 -0700 To: Rui Salvaterra , tglx@linutronix.de, mingo@redhat.com CC: x86@kernel.org, linux-kernel@vger.kernel.org Message-ID: <846B5B04-DA60-4641-B1ED-B98951245435@zytor.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2506 Lines: 63 On October 10, 2016 2:45:38 PM PDT, Rui Salvaterra wrote: >Hi, Thomas, Ingo, Peter, > >(Sending as RFC, since I don't know if this patch is acceptable.) > >The GCC team has deprecated atom as a march/mtune target since almost >three >years ago, according to this mailing list thread [1], in favour of >specific >microarchitecture names (bonnell, silvermont). This patch changes the >Atom >optimisation target in the kernel to bonnell, as it was originally >intended. > >Tested on an x86-64 Atom 330 machine. No functional changes. > >[1] https://gcc.gnu.org/ml/gcc-patches/2013-12/msg01805.html > >Signed-off-by: Rui Salvaterra >--- > arch/x86/Makefile | 4 ++-- > arch/x86/Makefile_32.cpu | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/arch/x86/Makefile b/arch/x86/Makefile >index 2d44933..b7d615f 100644 >--- a/arch/x86/Makefile >+++ b/arch/x86/Makefile >@@ -109,8 +109,8 @@ else > > cflags-$(CONFIG_MCORE2) += \ > $(call cc-option,-march=core2,$(call cc-option,-mtune=generic)) >- cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom) \ >- $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic)) >+ cflags-$(CONFIG_MATOM) += $(call cc-option,-march=bonnell) \ >+ $(call cc-option,-mtune=bonnell,$(call cc-option,-mtune=generic)) > cflags-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=generic) > KBUILD_CFLAGS += $(cflags-y) > >diff --git a/arch/x86/Makefile_32.cpu b/arch/x86/Makefile_32.cpu >index 6647ed4..d66e5e3 100644 >--- a/arch/x86/Makefile_32.cpu >+++ b/arch/x86/Makefile_32.cpu >@@ -32,8 +32,8 @@ cflags-$(CONFIG_MCYRIXIII) += $(call >cc-option,-march=c3,-march=i486) $(align)-f > cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686) > cflags-$(CONFIG_MVIAC7) += -march=i686 > cflags-$(CONFIG_MCORE2) += -march=i686 $(call tune,core2) >-cflags-$(CONFIG_MATOM) += $(call cc-option,-march=atom,$(call >cc-option,-march=core2,-march=i686)) \ >- $(call cc-option,-mtune=atom,$(call cc-option,-mtune=generic)) >+cflags-$(CONFIG_MATOM) += $(call cc-option,-march=bonnell,$(call >cc-option,-march=core2,-march=i686)) \ >+ $(call cc-option,-mtune=bonnell,$(call cc-option,-mtune=generic)) > > # AMD Elan support > cflags-$(CONFIG_MELAN) += -march=i486 This just breaks backwards compatibility with older gcc. If you want to add a comment that's fine, though. Nacked-by: hpa -- Sent from my Android device with K-9 Mail. Please excuse my brevity.