aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/include/asm/tlbflush.h
diff options
context:
space:
mode:
authorWill Deacon <will@kernel.org>2019-08-22 15:03:45 +0100
committerWill Deacon <will@kernel.org>2019-08-27 17:38:26 +0100
commit51696d346c49c6cf4f29e9b20d6e15832a2e3408 (patch)
tree108f92a17d8490fc6c0d895204f58d1576ce56d8 /arch/arm64/include/asm/tlbflush.h
parentRevert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" (diff)
downloadlinux-dev-51696d346c49c6cf4f29e9b20d6e15832a2e3408.tar.xz
linux-dev-51696d346c49c6cf4f29e9b20d6e15832a2e3408.zip
arm64: tlb: Ensure we execute an ISB following walk cache invalidation
05f2d2f83b5a ("arm64: tlbflush: Introduce __flush_tlb_kernel_pgtable") added a new TLB invalidation helper which is used when freeing intermediate levels of page table used for kernel mappings, but is missing the required ISB instruction after completion of the TLBI instruction. Add the missing barrier. Cc: <stable@vger.kernel.org> Fixes: 05f2d2f83b5a ("arm64: tlbflush: Introduce __flush_tlb_kernel_pgtable") Reviewed-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to '')
-rw-r--r--arch/arm64/include/asm/tlbflush.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/tlbflush.h b/arch/arm64/include/asm/tlbflush.h
index 8af7a85f76bd..bc3949064725 100644
--- a/arch/arm64/include/asm/tlbflush.h
+++ b/arch/arm64/include/asm/tlbflush.h
@@ -251,6 +251,7 @@ static inline void __flush_tlb_kernel_pgtable(unsigned long kaddr)
dsb(ishst);
__tlbi(vaae1is, addr);
dsb(ish);
+ isb();
}
#endif