Browse Source

KVM: x86 emulator: Update c->dst.bytes in decode instruction

Update c->dst.bytes in decode instruction instead of instruction
itself.  It's needed because if c->dst.bytes is equal to 0, the
instruction is not emulated.

Signed-off-by: Guillaume Thouvenin <guillaume.thouvenin@ext.bull.net>
Signed-off-by: Laurent Vivier <laurent.vivier@bull.net>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Guillaume Thouvenin 17 years ago
parent
commit
89c696383d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      arch/x86/kvm/x86_emulate.c

+ 1 - 0
arch/x86/kvm/x86_emulate.c

@@ -1049,6 +1049,7 @@ done_prefixes:
 		break;
 		break;
 	case DstMem:
 	case DstMem:
 		if ((c->d & ModRM) && c->modrm_mod == 3) {
 		if ((c->d & ModRM) && c->modrm_mod == 3) {
+			c->dst.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
 			c->dst.type = OP_REG;
 			c->dst.type = OP_REG;
 			c->dst.val = c->dst.orig_val = c->modrm_val;
 			c->dst.val = c->dst.orig_val = c->modrm_val;
 			c->dst.ptr = c->modrm_ptr;
 			c->dst.ptr = c->modrm_ptr;