KVM: x86: expose Intel cpu new features (HLE, RTM) to guest
authorLiu, Jinsong <jinsong.liu@intel.com>
Tue, 28 Feb 2012 05:15:46 +0000 (05:15 +0000)
committerAvi Kivity <avi@redhat.com>
Sun, 8 Apr 2012 09:46:32 +0000 (12:46 +0300)
Intel recently release 2 new features, HLE and RTM.
Refer to http://software.intel.com/file/41417.
This patch expose them to guest.

Signed-off-by: Liu, Jinsong <jinsong.liu@intel.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/cpuid.c

index 9fed5be..c2134b8 100644 (file)
@@ -247,7 +247,8 @@ static int do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
 
        /* cpuid 7.0.ebx */
        const u32 kvm_supported_word9_x86_features =
-               F(FSGSBASE) | F(BMI1) | F(AVX2) | F(SMEP) | F(BMI2) | F(ERMS);
+               F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
+               F(BMI2) | F(ERMS) | F(RTM);
 
        /* all calls to cpuid_count() should be made on the same cpu */
        get_cpu();