aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2012-07-09 10:23:30 +0100
committerJan Beulich <jbeulich@novell.com>2012-07-09 10:23:30 +0100
commit78bfaf79b74ced55a1ad9f86068b587c681ce098 (patch)
tree6a4c8c00b63af1acd161cb9160bf91aba4a32dad
parent15b2fe84d8059f8e1d4da16ebc1bab8c9e96ae29 (diff)
downloadxen-78bfaf79b74ced55a1ad9f86068b587c681ce098.tar.gz
xen-78bfaf79b74ced55a1ad9f86068b587c681ce098.tar.bz2
xen-78bfaf79b74ced55a1ad9f86068b587c681ce098.zip
x86/cpuidle: add Westmere-EX support to hw residencies reading logic
This is in accordance with http://software.intel.com/en-us/articles/intel-processor-identification-with-cpuid-model-and-family-numbers/ Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Haitao Shan <maillists.shan@gmail.com> xen-unstable changeset: 24261:64088ba60263 xen-unstable date: Wed Nov 30 10:23:41 2011 +0100
-rw-r--r--xen/arch/x86/acpi/cpu_idle.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/xen/arch/x86/acpi/cpu_idle.c b/xen/arch/x86/acpi/cpu_idle.c
index a8d160da81..6ae9d476a9 100644
--- a/xen/arch/x86/acpi/cpu_idle.c
+++ b/xen/arch/x86/acpi/cpu_idle.c
@@ -111,6 +111,7 @@ static void do_get_hw_residencies(void *arg)
/* Westmere */
case 0x25:
case 0x2C:
+ case 0x2F:
GET_PC3_RES(hw_res->pc3);
GET_PC6_RES(hw_res->pc6);
GET_PC7_RES(hw_res->pc7);