From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752442AbdK0OI1 (ORCPT ); Mon, 27 Nov 2017 09:08:27 -0500 Received: from mail-wr0-f195.google.com ([209.85.128.195]:43783 "EHLO mail-wr0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752289AbdK0OIZ (ORCPT ); Mon, 27 Nov 2017 09:08:25 -0500 X-Google-Smtp-Source: AGs4zMbN7dsbbUKhkzb1qzrb1l7ccdKuI9Y4R6CnYEzut9jyjV3KPkcm1elvTegsVYonDOcM/IQJEg== Date: Mon, 27 Nov 2017 15:08:22 +0100 From: Ingo Molnar To: Borislav Petkov Cc: Thomas Gleixner , linux-kernel@vger.kernel.org, Dave Hansen , Andy Lutomirski , "H . Peter Anvin" , Peter Zijlstra , Linus Torvalds Subject: Re: [PATCH 00/24] x86/mm: Add KAISER support Message-ID: <20171127140822.7cmlv77cznvzgf6b@gmail.com> References: <20171127104923.14378-1-mingo@kernel.org> <20171127135138.k4v4b3szwe3a2mjb@pd.tnic> <20171127135905.d74secm2cgsg4wbq@pd.tnic> <20171127140344.lc22ajgwp5fi7gs5@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171127140344.lc22ajgwp5fi7gs5@gmail.com> User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Ingo Molnar wrote: > > diff --git a/arch/x86/boot/compressed/pagetable.c b/arch/x86/boot/compressed/pagetable.c > > index d5364ca2e3f9..63eaa71ad9f1 100644 > > --- a/arch/x86/boot/compressed/pagetable.c > > +++ b/arch/x86/boot/compressed/pagetable.c > > @@ -22,6 +22,7 @@ > > * the SME support to avoid any compile and link errors. > > */ > > #undef CONFIG_AMD_MEM_ENCRYPT > > +#undef CONFIG_KAISER > > > > #include "misc.h" > > Yeah - will use one with a bit more explanation: > > arch/x86/boot/compressed/pagetable.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/arch/x86/boot/compressed/pagetable.c b/arch/x86/boot/compressed/pagetable.c > index d5364ca2e3f9..6bd51de4475c 100644 > --- a/arch/x86/boot/compressed/pagetable.c > +++ b/arch/x86/boot/compressed/pagetable.c > @@ -23,6 +23,11 @@ > */ > #undef CONFIG_AMD_MEM_ENCRYPT > > +/* > + * No KAISER support needed either: > + */ > +#undef CONFIG_KAISER > + > #include "misc.h" > > /* These actually do the work of building the kernel identity maps. */ Ok, have refreshed the -tip branches with this fix as well. Thanks, Ingo