diff options
author | Will Deacon <will@kernel.org> | 2019-08-22 17:03:45 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2019-08-27 19:38:26 +0300 |
commit | 51696d346c49c6cf4f29e9b20d6e15832a2e3408 (patch) | |
tree | 108f92a17d8490fc6c0d895204f58d1576ce56d8 /arch/arm64/include/asm/tlbflush.h | |
parent | d0b7a302d58abe24ed0f32a0672dd4c356bb73db (diff) | |
download | linux-51696d346c49c6cf4f29e9b20d6e15832a2e3408.tar.xz |
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 'arch/arm64/include/asm/tlbflush.h')
-rw-r--r-- | arch/arm64/include/asm/tlbflush.h | 1 |
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 |