Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68152d88 authored by Avi Kivity's avatar Avi Kivity
Browse files

KVM: x86 emulator: Don't force #UD for 0F 01 /5



While it isn't defined, no need to force a #UD.  If it becomes defined
in the future this can cause wierd problems for the guest.

Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 26d05cc7
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -4127,9 +4127,6 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt)
		case 6: /* lmsw */
			rc = em_lmsw(ctxt);
			break;
		case 5: /* not defined */
			rc = emulate_ud(ctxt);
			break;
		case 7: /* invlpg*/
			rc = em_invlpg(ctxt);
			break;