diff options
| author | Andi Kleen <ak@linux.intel.com> | 2018-08-07 15:09:36 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-08-15 18:13:00 +0200 |
| commit | a5f284feeb2071f4a381fccf1c8c9b3e05b7a465 (patch) | |
| tree | 799b72eb8f5e25aa29409343727ed1e631c20d6a | |
| parent | 9eb0a3cce0089d93ad031c85ce6f2aee09fd4015 (diff) | |
| download | linux-a5f284feeb2071f4a381fccf1c8c9b3e05b7a465.tar.gz linux-a5f284feeb2071f4a381fccf1c8c9b3e05b7a465.tar.bz2 linux-a5f284feeb2071f4a381fccf1c8c9b3e05b7a465.zip | |
x86/speculation/l1tf: Invert all not present mappings
commit f22cc87f6c1f771b57c407555cfefd811cdd9507 upstream
For kernel mappings PAGE_PROTNONE is not necessarily set for a non present
mapping, but the inversion logic explicitely checks for !PRESENT and
PROT_NONE.
Remove the PROT_NONE check and make the inversion unconditional for all not
present mappings.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | arch/x86/include/asm/pgtable-invert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/pgtable-invert.h b/arch/x86/include/asm/pgtable-invert.h index 177564187fc0..44b1203ece12 100644 --- a/arch/x86/include/asm/pgtable-invert.h +++ b/arch/x86/include/asm/pgtable-invert.h @@ -6,7 +6,7 @@ static inline bool __pte_needs_invert(u64 val) { - return (val & (_PAGE_PRESENT|_PAGE_PROTNONE)) == _PAGE_PROTNONE; + return !(val & _PAGE_PRESENT); } /* Get a mask to xor with the page table entry to get the correct pfn. */ |
