Re: [Qemu-devel] [QEMU PATCH] i386: cpu: add missing CPUID[EAX=7, ECX=0] flag names

2012-10-26 Thread Marcelo Tosatti
On Tue, Oct 09, 2012 at 12:43:52PM -0400, Don Slutz wrote:
 On 10/09/12 10:03, Eduardo Habkost wrote:
 This makes QEMU recognize the following CPU flag names:
 
   Flags| Corresponding KVM kernel commit
   -+
   FSGSBASE | 176f61da82435eae09cc96f70b530d1ba0746b8b
   AVX2, BMI1, BMI2 | fb215366b3c7320ac25dca766a0152df16534932
   HLE, RTM | 83c529151ab0d4a813e3f6a3e293fff75d468519
   INVPCID  | ad756a1603c5fac207758faaac7f01c34c9d0b7b
   ERMS | a01c8f9b4e266df1d7166d23216f2060648f862d
 
 Signed-off-by: Eduardo Habkost ehabk...@redhat.com
 ---
   target-i386/cpu.c | 4 ++--
   1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/target-i386/cpu.c b/target-i386/cpu.c
 index f3708e6..b012372 100644
 --- a/target-i386/cpu.c
 +++ b/target-i386/cpu.c
 @@ -105,8 +105,8 @@ static const char *svm_feature_name[] = {
   };
   static const char *cpuid_7_0_ebx_feature_name[] = {
 -NULL, NULL, NULL, NULL, NULL, NULL, NULL, smep,
 -NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
 +fsgsbase, NULL, NULL, bmi1, hle, avx2, NULL, smep,
 +bmi2, erms, invpcid, rtm, NULL, NULL, NULL, NULL,
   NULL, NULL, NULL, NULL, smap, NULL, NULL, NULL,
   NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
   };
 Reviewed-by: Don Slutz d...@cloudswitch.com

Applied to uq/master, thanks.

--
To unsubscribe from this list: send the line unsubscribe kvm in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [Qemu-devel] [QEMU PATCH] i386: cpu: add missing CPUID[EAX=7, ECX=0] flag names

2012-10-09 Thread Don Slutz

On 10/09/12 10:03, Eduardo Habkost wrote:

This makes QEMU recognize the following CPU flag names:

  Flags| Corresponding KVM kernel commit
  -+
  FSGSBASE | 176f61da82435eae09cc96f70b530d1ba0746b8b
  AVX2, BMI1, BMI2 | fb215366b3c7320ac25dca766a0152df16534932
  HLE, RTM | 83c529151ab0d4a813e3f6a3e293fff75d468519
  INVPCID  | ad756a1603c5fac207758faaac7f01c34c9d0b7b
  ERMS | a01c8f9b4e266df1d7166d23216f2060648f862d

Signed-off-by: Eduardo Habkost ehabk...@redhat.com
---
  target-i386/cpu.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index f3708e6..b012372 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -105,8 +105,8 @@ static const char *svm_feature_name[] = {
  };
  
  static const char *cpuid_7_0_ebx_feature_name[] = {

-NULL, NULL, NULL, NULL, NULL, NULL, NULL, smep,
-NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+fsgsbase, NULL, NULL, bmi1, hle, avx2, NULL, smep,
+bmi2, erms, invpcid, rtm, NULL, NULL, NULL, NULL,
  NULL, NULL, NULL, NULL, smap, NULL, NULL, NULL,
  NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
  };

Reviewed-by: Don Slutz d...@cloudswitch.com

--
To unsubscribe from this list: send the line unsubscribe kvm in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html