KVM: x86 emulator: fix 0f 01 /5 emulation
It is undefined and should generate #UD. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
5e3ae6c540
commit
6e1e5ffee8
|
@ -2490,6 +2490,9 @@ twobyte_insn:
|
|||
(c->src.val & 0x0f), ctxt->vcpu);
|
||||
c->dst.type = OP_NONE;
|
||||
break;
|
||||
case 5: /* not defined */
|
||||
kvm_queue_exception(ctxt->vcpu, UD_VECTOR);
|
||||
goto done;
|
||||
case 7: /* invlpg*/
|
||||
emulate_invlpg(ctxt->vcpu, memop);
|
||||
/* Disable writeback. */
|
||||
|
|
Loading…
Reference in New Issue