]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: MIPS: Precalculate MMIO load resume PC
authorJames Hogan <james.hogan@imgtec.com>
Tue, 25 Oct 2016 15:11:12 +0000 (16:11 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 26 Oct 2016 11:43:55 +0000 (13:43 +0200)
commite31e9f2076fbe5da466036e4f1d63ca73224880b
treec104b417fdee65ed848470a75cc459532df9cf98
parent7039ec9189a226e2117d70ad61dd56423834fb94
KVM: MIPS: Precalculate MMIO load resume PC

The advancing of the PC when completing an MMIO load is done before
re-entering the guest, i.e. before restoring the guest ASID. However if
the load is in a branch delay slot it may need to access guest code to
read the prior branch instruction. This isn't safe in TLB mapped code at
the moment, nor in the future when we'll access unmapped guest segments
using direct user accessors too, as it could read the branch from host
user memory instead.

Therefore calculate the resume PC in advance while we're still in the
right context and save it in the new vcpu->arch.io_pc (replacing the no
longer needed vcpu->arch.pending_load_cause), and restore it on MMIO
completion.

Fixes: eecc25067136 ("KVM/MIPS32: Privileged instruction/target branch emulation.")
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-
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/mips/include/asm/kvm_host.h
arch/mips/kvm/emulate.c