diff options
author | Paolo Bonzini | 2020-10-21 18:05:58 -0400 |
---|---|---|
committer | Paolo Bonzini | 2020-10-21 18:05:58 -0400 |
commit | c0623f5e5d21d65d08f6276ca4e64d470c833761 (patch) | |
tree | 5bc1f615341a08b0d2bd9af5a893ae65f8499f05 /arch/arm64/kvm | |
parent | a4f1d94e6bc1b00c4efa9655ad14e0d49b8f1e37 (diff) | |
parent | e2e1a1c86bf32a8d7458b9024f518cf2434414c8 (diff) |
Merge branch 'kvm-fixes' into 'next'
Pick up bugfixes from 5.9, otherwise various tests fail.
Diffstat (limited to 'arch/arm64/kvm')
-rw-r--r-- | arch/arm64/kvm/hyp/nvhe/tlb.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm64/kvm/hyp/nvhe/tlb.c b/arch/arm64/kvm/hyp/nvhe/tlb.c index 544bca3072b7..39ca71ab8866 100644 --- a/arch/arm64/kvm/hyp/nvhe/tlb.c +++ b/arch/arm64/kvm/hyp/nvhe/tlb.c @@ -31,7 +31,14 @@ static void __tlb_switch_to_guest(struct kvm_s2_mmu *mmu, isb(); } + /* + * __load_guest_stage2() includes an ISB only when the AT + * workaround is applied. Take care of the opposite condition, + * ensuring that we always have an ISB, but not two ISBs back + * to back. + */ __load_guest_stage2(mmu); + asm(ALTERNATIVE("isb", "nop", ARM64_WORKAROUND_SPECULATIVE_AT)); } static void __tlb_switch_to_host(struct tlb_inv_context *cxt) |