Commit 9928ff60 authored by Avi Kivity's avatar Avi Kivity

KVM: x86 emulator: fix LMSW able to clear cr0.pe

LMSW is documented not to be able to clear cr0.pe; make it so.
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent e85d28f8
...@@ -3211,7 +3211,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt) ...@@ -3211,7 +3211,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt)
c->dst.val = ops->get_cr(0, ctxt->vcpu); c->dst.val = ops->get_cr(0, ctxt->vcpu);
break; break;
case 6: /* lmsw */ case 6: /* lmsw */
ops->set_cr(0, (ops->get_cr(0, ctxt->vcpu) & ~0x0ful) | ops->set_cr(0, (ops->get_cr(0, ctxt->vcpu) & ~0x0eul) |
(c->src.val & 0x0f), ctxt->vcpu); (c->src.val & 0x0f), ctxt->vcpu);
c->dst.type = OP_NONE; c->dst.type = OP_NONE;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment