x86/tlb: Move flush_tlb_others() out of line
authorThomas Gleixner <tglx@linutronix.de>
Tue, 21 Apr 2020 09:20:36 +0000 (11:20 +0200)
committerBorislav Petkov <bp@suse.de>
Sun, 26 Apr 2020 09:10:25 +0000 (11:10 +0200)
commit29def599b38bb8a10f48f83821dd990615300b04
tree6135cb7b51ad2a42d09e9cf6d993bab864032b31
parent58430c5dba7bfe1d132b3c07f0d7a596852ef55c
x86/tlb: Move flush_tlb_others() out of line

cpu_tlbstate is exported because various TLB-related functions need
access to it, but cpu_tlbstate is sensitive information which should
only be accessed by well-contained kernel functions and not be directly
exposed to modules.

As a last step, move __flush_tlb_others() out of line and hide the
native function. The latter can be static when CONFIG_PARAVIRT is
disabled.

No functional change.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200421092559.641957686@linutronix.de
arch/x86/include/asm/paravirt.h
arch/x86/include/asm/tlbflush.h
arch/x86/mm/tlb.c