diff options
author | Avi Kivity <avi@redhat.com> | 2012-06-07 14:04:36 (GMT) |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-07-09 11:19:01 (GMT) |
commit | 510425ff3344df03a1f94bce49e659ae302e0d34 (patch) | |
tree | 0b9e1c771f23ec8efd1b18eabfa11184c4d16f0a /arch/x86 | |
parent | 79d5b4c3cd809c770d4bf9812635647016c56011 (diff) | |
download | linux-fsl-qoriq-510425ff3344df03a1f94bce49e659ae302e0d34.tar.xz |
KVM: x86 emulator: fix LIDT/LGDT in long mode
The operand size for these instructions is 8 bytes in long mode, even without
a REX prefix. Set it explicitly.
Triggered while booting Linux with emulate_invalid_guest_state=1.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/emulate.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index fe4340f..24c8425 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -2997,6 +2997,8 @@ static int em_lgdt(struct x86_emulate_ctxt *ctxt) struct desc_ptr desc_ptr; int rc; + if (ctxt->mode == X86EMUL_MODE_PROT64) + ctxt->op_bytes = 8; rc = read_descriptor(ctxt, ctxt->src.addr.mem, &desc_ptr.size, &desc_ptr.address, ctxt->op_bytes); @@ -3024,6 +3026,8 @@ static int em_lidt(struct x86_emulate_ctxt *ctxt) struct desc_ptr desc_ptr; int rc; + if (ctxt->mode == X86EMUL_MODE_PROT64) + ctxt->op_bytes = 8; rc = read_descriptor(ctxt, ctxt->src.addr.mem, &desc_ptr.size, &desc_ptr.address, ctxt->op_bytes); |