From: Izik Eidus Date: Sun, 11 Nov 2007 12:48:17 +0000 (+0200) Subject: KVM: x86 emulator: remove 8 bytes operands emulator for call near instruction X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=906e608b05b87b650e509491e41c89575358df5e;p=deliverable%2Flinux.git KVM: x86 emulator: remove 8 bytes operands emulator for call near instruction it is removed beacuse it isnt supported on a real host Signed-off-by: Izik Eidus Signed-off-by: Avi Kivity --- diff --git a/drivers/kvm/x86_emulate.c b/drivers/kvm/x86_emulate.c index 64888a6edc27..e6979475bee7 100644 --- a/drivers/kvm/x86_emulate.c +++ b/drivers/kvm/x86_emulate.c @@ -1558,9 +1558,6 @@ special_insn: case 4: rel = insn_fetch(s32, 4, c->eip); break; - case 8: - rel = insn_fetch(s64, 8, c->eip); - break; default: DPRINTF("Call: Invalid op_bytes\n"); goto cannot_emulate;