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-Tag: v2.6.25-rc1~1138^2~157 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=906e608b05b87b650e509491e41c89575358df5e;p=linux-2.6 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 64888a6edc..e6979475be 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;