Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753773AbeAINfr (ORCPT + 1 other); Tue, 9 Jan 2018 08:35:47 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:52535 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751376AbeAINfq (ORCPT ); Tue, 9 Jan 2018 08:35:46 -0500 Date: Tue, 9 Jan 2018 14:35:33 +0100 (CET) From: Thomas Gleixner To: Peter Zijlstra cc: Josh Poimboeuf , David Woodhouse , Andi Kleen , Paul Turner , LKML , Linus Torvalds , Greg Kroah-Hartman , Tim Chen , Dave Hansen , Kees Cook , Rik van Riel , Andy Lutomirski , Jiri Kosina , gnomes@lxorguk.ukuu.org.uk Subject: Re: [PATCH v6 01/10] x86/retpoline: Add initial retpoline support In-Reply-To: <20180109123631.GH6176@hirez.programming.kicks-ass.net> Message-ID: References: <1515363085-4219-1-git-send-email-dwmw@amazon.co.uk> <1515363085-4219-2-git-send-email-dwmw@amazon.co.uk> <20180108134220.2for3pwgqbmkkq2s@treble> <20180109123631.GH6176@hirez.programming.kicks-ass.net> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Tue, 9 Jan 2018, Peter Zijlstra wrote: > On Mon, Jan 08, 2018 at 02:46:32PM +0100, Thomas Gleixner wrote: > > On Mon, 8 Jan 2018, Josh Poimboeuf wrote: > > > > I wonder if an error might be more appropriate than a warning. I > > > learned from experience that a lot of people don't see these Makefile > > > warnings, and this would be a dangerous one to miss. > > > > > > Also if this were an error, you could get rid of the RETPOLINE define, > > > and that would be one less define cluttering up the already way-too-long > > > GCC arg list. > > > > It still allows to get the ASM part covered. If that's worth it I can't tell. > > So elsewhere you stated we're dropping support for GCC without asm-goto > (<4.5), does it then make sense to make one more step and mandate a > retpoline capable compiler, which would put us at >=4.9 (for x86). > > That would get rid of this weird case as well. I agree in principle, though the difference is that the retpoline compilers are not available today, gcc with asm goto are. The reasoning for the minimal thing was to cover at least the obvious easy targets, eg. sys_call_table as the deeper ones are harder. Thanks, tglx