From: Andi Kleen Date: Thu, 21 Jan 2010 22:26:27 +0000 (+0100) Subject: oprofile/x86: add Xeon 7500 series support X-Git-Tag: v2.6.33-rc7~53^2~5^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e83e452b0692c9c13372540deb88a77d4ae2553d;p=platform%2Fkernel%2Flinux-3.10.git oprofile/x86: add Xeon 7500 series support Add Xeon 7500 series support to oprofile. Straight forward: it's the same as Core i7, so just detect the model number. No user space changes needed. Signed-off-by: Andi Kleen Signed-off-by: Robert Richter --- diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c index 76d4f56..3347f69 100644 --- a/arch/x86/oprofile/nmi_int.c +++ b/arch/x86/oprofile/nmi_int.c @@ -598,6 +598,7 @@ static int __init ppro_init(char **cpu_type) case 15: case 23: *cpu_type = "i386/core_2"; break; + case 0x2e: case 26: spec = &op_arch_perfmon_spec; *cpu_type = "i386/core_i7";