aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-04-05 16:21:58 +0300
committerAvi Kivity <avi@redhat.com>2011-05-11 07:57:04 -0400
commit8b18bc378224b4f195145b407b95768a289497e3 (patch)
treee1fa0006348dffd43ea026658b9b7cf0f023a36c /arch/x86/kvm
parent09000adb86550d2895b64faa52e64eaec3cae7b2 (diff)
downloadkernel_samsung_smdk4412-8b18bc378224b4f195145b407b95768a289497e3.zip
kernel_samsung_smdk4412-8b18bc378224b4f195145b407b95768a289497e3.tar.gz
kernel_samsung_smdk4412-8b18bc378224b4f195145b407b95768a289497e3.tar.bz2
KVM: x86 emulator: Re-add VendorSpecific tag to VMMCALL insn
VMMCALL needs the VendorSpecific tag so that #UD emulation (called if a guest running on AMD was migrated to an Intel host) is allowed to process the instruction. Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-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 ae5f491..0e31b0c 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -2677,7 +2677,7 @@ static struct opcode group7_rm1[] = {
static struct opcode group7_rm3[] = {
DIP(SrcNone | ModRM | Prot | Priv, vmrun, check_svme_pa),
- DIP(SrcNone | ModRM | Prot , vmmcall, check_svme),
+ DIP(SrcNone | ModRM | Prot | VendorSpecific, vmmcall, check_svme),
DIP(SrcNone | ModRM | Prot | Priv, vmload, check_svme_pa),
DIP(SrcNone | ModRM | Prot | Priv, vmsave, check_svme_pa),
DIP(SrcNone | ModRM | Prot | Priv, stgi, check_svme),