Commit 0651b3ad authored by Hugh Dickins's avatar Hugh Dickins Committed by Greg Kroah-Hartman

kaiser: asm/tlbflush.h handle noPGE at lower level


I found asm/tlbflush.h too twisty, and think it safer not to avoid
__native_flush_tlb_global_irq_disabled() in the kaiser_enabled case,
but instead let it handle kaiser_enabled along with cr3: it can just
use __native_flush_tlb() for that, no harm in re-disabling preemption.

(This is not the same change as Kirill and Dave have suggested for
upstream, flipping PGE in cr4: that's neat, but needs a cpu_has_pge
check; cr3 is enough for kaiser, and thought to be cheaper than cr4.)

Also delete the X86_FEATURE_INVPCID invpcid_flush_all_nonglobals()
preference from __native_flush_tlb(): unlike the invpcid_flush_all()
preference in __native_flush_tlb_global(), it's not seen in upstream
4.14, and was recently reported to be surprisingly slow.
Signed-off-by: default avatarHugh Dickins <hughd@google.com>
Acked-by: default avatarJiri Kosina <jkosina@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 28c6de54
...@@ -151,14 +151,6 @@ static inline void kaiser_flush_tlb_on_return_to_user(void) ...@@ -151,14 +151,6 @@ static inline void kaiser_flush_tlb_on_return_to_user(void)
static inline void __native_flush_tlb(void) static inline void __native_flush_tlb(void)
{ {
if (this_cpu_has(X86_FEATURE_INVPCID)) {
/*
* Note, this works with CR4.PCIDE=0 or 1.
*/
invpcid_flush_all_nonglobals();
return;
}
/* /*
* If current->mm == NULL then we borrow a mm which may change during a * If current->mm == NULL then we borrow a mm which may change during a
* task switch and therefore we must not be preempted while we write CR3 * task switch and therefore we must not be preempted while we write CR3
...@@ -182,11 +174,8 @@ static inline void __native_flush_tlb_global_irq_disabled(void) ...@@ -182,11 +174,8 @@ static inline void __native_flush_tlb_global_irq_disabled(void)
/* restore PGE as it was before */ /* restore PGE as it was before */
native_write_cr4(cr4); native_write_cr4(cr4);
} else { } else {
/* /* do it with cr3, letting kaiser flush user PCID */
* x86_64 microcode update comes this way when CR4.PGE is not __native_flush_tlb();
* enabled, and it's safer for all callers to allow this case.
*/
native_write_cr3(native_read_cr3());
} }
} }
...@@ -194,12 +183,6 @@ static inline void __native_flush_tlb_global(void) ...@@ -194,12 +183,6 @@ static inline void __native_flush_tlb_global(void)
{ {
unsigned long flags; unsigned long flags;
if (kaiser_enabled) {
/* Globals are not used at all */
__native_flush_tlb();
return;
}
if (this_cpu_has(X86_FEATURE_INVPCID)) { if (this_cpu_has(X86_FEATURE_INVPCID)) {
/* /*
* Using INVPCID is considerably faster than a pair of writes * Using INVPCID is considerably faster than a pair of writes
...@@ -255,11 +238,7 @@ static inline void __native_flush_tlb_single(unsigned long addr) ...@@ -255,11 +238,7 @@ static inline void __native_flush_tlb_single(unsigned long addr)
static inline void __flush_tlb_all(void) static inline void __flush_tlb_all(void)
{ {
if (cpu_has_pge) __flush_tlb_global();
__flush_tlb_global();
else
__flush_tlb();
/* /*
* Note: if we somehow had PCID but not PGE, then this wouldn't work -- * Note: if we somehow had PCID but not PGE, then this wouldn't work --
* we'd end up flushing kernel translations for the current ASID but * we'd end up flushing kernel translations for the current ASID but
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment