]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: KVM: Make VHE Stage-2 TLB invalidation operations non-interruptible
authorMarc Zyngier <marc.zyngier@arm.com>
Thu, 6 Dec 2018 17:31:19 +0000 (17:31 +0000)
committerWill Deacon <will.deacon@arm.com>
Mon, 10 Dec 2018 11:54:37 +0000 (11:54 +0000)
commite17d24607b68edc5861d4f232867b700cb070a7b
tree90736c01cfc0860f68da3c714d50b80a7c70eb03
parentebb20e01bb448ecb2fee86f0ea412a232fe92265
arm64: KVM: Make VHE Stage-2 TLB invalidation operations non-interruptible

Contrary to the non-VHE version of the TLB invalidation helpers, the VHE
code  has interrupts enabled, meaning that we can take an interrupt in
the middle of such a sequence, and start running something else with
HCR_EL2.TGE cleared.

That's really not a good idea.

Take the heavy-handed option and disable interrupts in
__tlb_switch_to_guest_vhe, restoring them in __tlb_switch_to_host_vhe.
The latter also gain an ISB in order to make sure that TGE really has
taken effect.

Cc: stable@vger.kernel.org
Acked-by: Christoffer Dall <christoffer.dall@arm.com>
Reviewed-by: James Morse <james.morse@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/kvm/hyp/tlb.c