From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752433AbaBVVA7 (ORCPT ); Sat, 22 Feb 2014 16:00:59 -0500 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:38117 "EHLO relay6-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750883AbaBVVA6 (ORCPT ); Sat, 22 Feb 2014 16:00:58 -0500 X-Originating-IP: 50.43.14.201 Date: Sat, 22 Feb 2014 13:00:39 -0800 From: Josh Triplett To: Borislav Petkov Cc: Andrew Morton , Andi Kleen , Feng Tang , "H. Peter Anvin" , Ingo Molnar , Jacob Shin , Jan Beulich , Jussi Kivilinna , "Kirill A. Shutemov" , Paul Gortmaker , Peter Zijlstra , "Rafael J. Wysocki" , Rob Landley , Seiji Aguchi , Stephane Eranian , Suravee Suthikulpanit , Thomas Gleixner , linux-kernel@vger.kernel.org, x86@kernel.org Subject: Re: [PATCH v2 2/2] x86: Support compiling out human-friendly processor feature names Message-ID: <20140222210038.GA19867@thin> References: <296de15c8addece6dada4ddac982b3934d8ff6fa.1393096111.git.josh@joshtriplett.org> <4bdaeab748d3b51ef24576ca030b5eb80455aff8.1393098813.git.josh@joshtriplett.org> <20140222204936.GA2534@pd.tnic> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140222204936.GA2534@pd.tnic> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Feb 22, 2014 at 09:49:36PM +0100, Borislav Petkov wrote: > On Sat, Feb 22, 2014 at 11:57:10AM -0800, Josh Triplett wrote: > > diff --git a/arch/x86/boot/cpu.c b/arch/x86/boot/cpu.c > > index 6ec6bb6..29207f6 100644 > > --- a/arch/x86/boot/cpu.c > > +++ b/arch/x86/boot/cpu.c > > @@ -16,7 +16,9 @@ > > */ > > > > #include "boot.h" > > +#ifdef CONFIG_X86_FEATURE_NAMES > > #include "cpustr.h" > > +#endif > > You probably could get rid of this ifdef too by moving it into cpustr.h > after teaching arch/x86/boot/mkcpustr.c to issue it... That would require building and running mkcpustr, which doesn't happen when !CONFIG_X86_FEATURE_NAMES. (And it'd require adding ifdefs to mkcpustr instead, which seems counterproductive.) However, in exploring this, I ran into some build issues with v2 on a clean build; I'll send out v3 shortly with fixes to those. - Josh Triplett