]> git.hungrycats.org Git - linux/commitdiff
MIPS: KVM: Fix CACHE immediate offset sign extension
authorJames Hogan <james.hogan@imgtec.com>
Fri, 11 Dec 2015 17:06:54 +0000 (17:06 +0000)
committerJiri Slaby <jslaby@suse.cz>
Mon, 14 Dec 2015 10:26:54 +0000 (11:26 +0100)
commit c5c2a3b998f1ff5a586f9d37e154070b8d550d17 upstream.

The immediate field of the CACHE instruction is signed, so ensure that
it gets sign extended by casting it to an int16_t rather than just
masking the low 16 bits.

Fixes: e685c689f3a8 ("KVM/MIPS32: Privileged instruction/target branch emulation.")
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: linux-mips@linux-mips.org
Cc: kvm@vger.kernel.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/mips/kvm/kvm_mips_emul.c

index c76f297b714976897f7c2ee2d3c27f5b123e054e..33085819cd893575b05582348d2d83487304994f 100644 (file)
@@ -935,7 +935,7 @@ kvm_mips_emulate_cache(uint32_t inst, uint32_t *opc, uint32_t cause,
 
        base = (inst >> 21) & 0x1f;
        op_inst = (inst >> 16) & 0x1f;
-       offset = inst & 0xffff;
+       offset = (int16_t)inst;
        cache = (inst >> 16) & 0x3;
        op = (inst >> 18) & 0x7;