From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753479AbbCWWkh (ORCPT ); Mon, 23 Mar 2015 18:40:37 -0400 Received: from lb1-smtp-cloud3.xs4all.net ([194.109.24.22]:59654 "EHLO lb1-smtp-cloud3.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752619AbbCWWke (ORCPT ); Mon, 23 Mar 2015 18:40:34 -0400 Message-ID: <1427150429.10958.12.camel@x220> Subject: Re: [PATCH 10/11] x86/xip: resolve alternative instructions at build From: Paul Bolle To: Jim Kukunas Cc: Linux Kernel , tom.zanussi@linux.intel.com, Arjan van de Ven , "H. Peter Anvin" , tglx@linutronix.de, mingo@redhat.com, x86@kernel.org Date: Mon, 23 Mar 2015 23:40:29 +0100 In-Reply-To: <1427096800-30452-11-git-send-email-james.t.kukunas@linux.intel.com> References: <1427096800-30452-1-git-send-email-james.t.kukunas@linux.intel.com> <1427096800-30452-11-git-send-email-james.t.kukunas@linux.intel.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Whitespace nits, mainly, I'm afraid. On Mon, 2015-03-23 at 00:46 -0700, Jim Kukunas wrote: > --- a/arch/x86/Kconfig > +++ b/arch/x86/Kconfig > +menu "XIP Alternative Instructions" > + depends on XIP_KERNEL > + > + config XIP_ENABLE_X86_FEATURE_POPCNT No need to indent this line. > + bool "Enable POPCNT alternative instructions" > + default n > + > + config XIP_ENABLE_X86_BUG_11AP Ditto. > + bool "Enable 11AP alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_XMM2 Etc. > + bool "Enable XMM2 alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_MFENCE_RDTSC > + bool "Enable MFENCE_RDTSC alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_LFENCE_RDTSC > + bool "Enable LFENCE_RDTSC alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_3DNOW > + bool "Enable 3DNOW alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_XMM > + bool "Enabled XMM alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_CLFLUSHOPT > + bool "Enable CLFLUSHOPT alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_XSAVEOPT > + bool "Enable XSAVEOPT alternative instructions" > + default n > + > + config XIP_ENABLE_X86_FEATURE_XSAVES > + bool "Enable XSAVES alternative instructions" > + default n > + > +endmenu > + The "n defaults are probably unneeded too. Paul Bolle