aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2013-04-11 05:32:14 -0400
committerGleb Natapov <gleb@redhat.com>2013-04-14 02:44:17 -0400
commit188424ba10313bbbc015727d418b7f18593becdd (patch)
treedbe015a95f4b2a2a4ef7dd3be733e4b8ee3abc6a
parent1146a78b8d88fc0e0ca2ab9c549821242e289432 (diff)
KVM: emulator: mark 0xff 0x7d opcode as undefined.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
-rw-r--r--arch/x86/kvm/emulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 77b56d5be3e1..46f63b8d09f4 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -3723,7 +3723,7 @@ static const struct opcode group5[] = {
3723 I(SrcMemFAddr | ImplicitOps | Stack, em_call_far), 3723 I(SrcMemFAddr | ImplicitOps | Stack, em_call_far),
3724 I(SrcMem | Stack, em_grp45), 3724 I(SrcMem | Stack, em_grp45),
3725 I(SrcMemFAddr | ImplicitOps, em_grp45), 3725 I(SrcMemFAddr | ImplicitOps, em_grp45),
3726 I(SrcMem | Stack, em_grp45), N, 3726 I(SrcMem | Stack, em_grp45), D(Undefined),
3727}; 3727};
3728 3728
3729static const struct opcode group6[] = { 3729static const struct opcode group6[] = {