diff options
author | Yang, Wei <wei.y.yang@intel.com> | 2011-06-14 20:10:19 +0800 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-07-12 13:16:24 +0300 |
commit | 176f61da82435eae09cc96f70b530d1ba0746b8b (patch) | |
tree | 7f31a0c846d40967b4475c53b709063679f0ee8d /arch/x86/kvm/x86.c | |
parent | 74dc2b4ffe3af1eac367be0178f88487cb9b240a (diff) | |
download | linux-3.10-176f61da82435eae09cc96f70b530d1ba0746b8b.tar.gz linux-3.10-176f61da82435eae09cc96f70b530d1ba0746b8b.tar.bz2 linux-3.10-176f61da82435eae09cc96f70b530d1ba0746b8b.zip |
KVM: Expose RDWRGSFS bit to KVM guests
This patch exposes RDWRGSFS bit to KVM guests.
Signed-off-by: Yang, Wei <wei.y.yang@intel.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 423e0cda8e9..76c16a5c6c5 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -2372,7 +2372,7 @@ static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function, /* cpuid 7.0.ebx */ const u32 kvm_supported_word9_x86_features = - F(SMEP); + F(SMEP) | F(FSGSBASE); /* all calls to cpuid_count() should be made on the same cpu */ get_cpu(); |