Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751328AbeAORu6 (ORCPT + 1 other); Mon, 15 Jan 2018 12:50:58 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:40883 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751180AbeAORu4 (ORCPT ); Mon, 15 Jan 2018 12:50:56 -0500 Date: Mon, 15 Jan 2018 18:49:17 +0100 (CET) From: Thomas Gleixner To: Laurent Dufour cc: paulmck@linux.vnet.ibm.com, peterz@infradead.org, akpm@linux-foundation.org, kirill@shutemov.name, ak@linux.intel.com, mhocko@kernel.org, dave@stgolabs.net, jack@suse.cz, Matthew Wilcox , benh@kernel.crashing.org, mpe@ellerman.id.au, paulus@samba.org, Ingo Molnar , hpa@zytor.com, Will Deacon , Sergey Senozhatsky , Andrea Arcangeli , Alexei Starovoitov , kemi.wang@intel.com, sergey.senozhatsky.work@gmail.com, linux-kernel@vger.kernel.org, linux-mm@kvack.org, haren@linux.vnet.ibm.com, khandual@linux.vnet.ibm.com, npiggin@gmail.com, bsingharora@gmail.com, Tim Chen , linuxppc-dev@lists.ozlabs.org, x86@kernel.org Subject: Re: [PATCH v6 01/24] x86/mm: Define CONFIG_SPF In-Reply-To: <753d7b28-3d7e-0c01-0386-8dad161f88ea@linux.vnet.ibm.com> Message-ID: References: <1515777968-867-1-git-send-email-ldufour@linux.vnet.ibm.com> <1515777968-867-2-git-send-email-ldufour@linux.vnet.ibm.com> <753d7b28-3d7e-0c01-0386-8dad161f88ea@linux.vnet.ibm.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Mon, 15 Jan 2018, Laurent Dufour wrote: > On 12/01/2018 19:57, Thomas Gleixner wrote: > > On Fri, 12 Jan 2018, Laurent Dufour wrote: > > > >> Introduce CONFIG_SPF which turns on the Speculative Page Fault handler when > >> building for 64bits with SMP. > >> > >> Signed-off-by: Laurent Dufour > >> --- > >> arch/x86/Kconfig | 4 ++++ > >> 1 file changed, 4 insertions(+) > >> > >> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig > >> index a317d5594b6a..d74353b85aaf 100644 > >> --- a/arch/x86/Kconfig > >> +++ b/arch/x86/Kconfig > >> @@ -2882,6 +2882,10 @@ config X86_DMA_REMAP > >> config HAVE_GENERIC_GUP > >> def_bool y > >> > >> +config SPF > >> + def_bool y > >> + depends on X86_64 && SMP > > > > Can you please put that into a generic place as > > > > config SPF > > bool > > > > and let the architectures select it. > > I'll change that to let the architectures (x86 and ppc64 currently) > selecting it, but the definition will remain in the arch/xxx/Kconfig file > since it depends on the architecture support in the page fault handler. Errm. No. config SPECULATIVE_PAGE_FAULT bool goes into a generic config file, e.g. mm/Kconfig Each architecture which implements support does: select SPECULATIVE_PAGE_FAULT in arch/xxx/Kconfig Thanks, tglx