KVM: MIPS: Drop other CPU ASIDs on guest MMU changes
authorJames Hogan <james.hogan@imgtec.com>
Thu, 15 Sep 2016 16:20:06 +0000 (17:20 +0100)
committerJames Hogan <james.hogan@imgtec.com>
Thu, 29 Sep 2016 11:39:30 +0000 (12:39 +0100)
commit91e4f1b6073dd680d86cdb7e42d7cccca9db39d8
tree961b33d04895288d2758c6c384f2b38fe1eca6e3
parentd5888477d31c64dba9264fbb33cfa9b066f071d0
KVM: MIPS: Drop other CPU ASIDs on guest MMU changes

When a guest TLB entry is replaced by TLBWI or TLBWR, we only invalidate
TLB entries on the local CPU. This doesn't work correctly on an SMP host
when the guest is migrated to a different physical CPU, as it could pick
up stale TLB mappings from the last time the vCPU ran on that physical
CPU.

Therefore invalidate both user and kernel host ASIDs on other CPUs,
which will cause new ASIDs to be generated when it next runs on those
CPUs.

We're careful only to do this if the TLB entry was already valid, and
only for the kernel ASID where the virtual address it mapped is outside
of the guest user address range.

Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Radim Krčmář" <rkrcmar@redhat.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: kvm@vger.kernel.org
Cc: <stable@vger.kernel.org> # 3.10.x-
arch/mips/kvm/emulate.c