From mboxrd@z Thu Jan 1 00:00:00 1970 From: peterz@infradead.org Subject: Re: [PATCH 23/24] x86: use asm-generic/mmu_context.h for no-op implementations Date: Tue, 28 Jul 2020 12:54:10 +0200 Message-ID: <20200728105410.GU119549@hirez.programming.kicks-ass.net> References: <20200728033405.78469-1-npiggin@gmail.com> <20200728033405.78469-24-npiggin@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728782AbgG1KyU (ORCPT ); Tue, 28 Jul 2020 06:54:20 -0400 Content-Disposition: inline In-Reply-To: <20200728033405.78469-24-npiggin@gmail.com> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Nicholas Piggin Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Arnd Bergmann , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" On Tue, Jul 28, 2020 at 01:34:04PM +1000, Nicholas Piggin wrote: > Cc: Thomas Gleixner > Cc: Ingo Molnar > Cc: Borislav Petkov > Cc: x86@kernel.org > Cc: "H. Peter Anvin" > Signed-off-by: Nicholas Piggin Acked-by: Peter Zijlstra (Intel) > --- > arch/x86/include/asm/mmu_context.h | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/arch/x86/include/asm/mmu_context.h b/arch/x86/include/asm/mmu_context.h > index 47562147e70b..255750548433 100644 > --- a/arch/x86/include/asm/mmu_context.h > +++ b/arch/x86/include/asm/mmu_context.h > @@ -92,12 +92,14 @@ static inline void switch_ldt(struct mm_struct *prev, struct mm_struct *next) > } > #endif > > +#define enter_lazy_tlb enter_lazy_tlb > extern void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk); > > /* > * Init a new mm. Used on mm copies, like at fork() > * and on mm's that are brand-new, like at execve(). > */ > +#define init_new_context init_new_context > static inline int init_new_context(struct task_struct *tsk, > struct mm_struct *mm) > { > @@ -117,6 +119,8 @@ static inline int init_new_context(struct task_struct *tsk, > init_new_context_ldt(mm); > return 0; > } > + > +#define destroy_context destroy_context > static inline void destroy_context(struct mm_struct *mm) > { > destroy_context_ldt(mm); > @@ -215,4 +219,6 @@ static inline bool arch_vma_access_permitted(struct vm_area_struct *vma, > > unsigned long __get_current_cr3_fast(void); > > +#include > + > #endif /* _ASM_X86_MMU_CONTEXT_H */ > -- > 2.23.0 >