diff options
author | Barry Kasindorf <barry.kasindorf@amd.com> | 2008-07-22 21:08:47 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-26 11:48:00 +0200 |
commit | 12f2b2610e812627acf338aaf043fef20bb726ca (patch) | |
tree | 361f32007237eeafcc4da8779562097f513caff8 /arch/x86/oprofile/nmi_int.c | |
parent | 286f571837ba9d67625afd015366d79345abb414 (diff) | |
download | talos-op-linux-12f2b2610e812627acf338aaf043fef20bb726ca.tar.gz talos-op-linux-12f2b2610e812627acf338aaf043fef20bb726ca.zip |
oprofile: Add support for AMD Family 11h
This patch add support for AMD Family 11h CPUs.
Signed-off-by: Barry Kasindorf <barry.kasindorf@amd.com>
Signed-off-by: Robert Richter <robert.richter@amd.com>
Cc: oprofile-list <oprofile-list@lists.sourceforge.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/oprofile/nmi_int.c')
-rw-r--r-- | arch/x86/oprofile/nmi_int.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/oprofile/nmi_int.c b/arch/x86/oprofile/nmi_int.c index 3f90289410e6..33db99ab90c0 100644 --- a/arch/x86/oprofile/nmi_int.c +++ b/arch/x86/oprofile/nmi_int.c @@ -436,6 +436,10 @@ int __init op_nmi_init(struct oprofile_operations *ops) model = &op_athlon_spec; cpu_type = "x86-64/family10"; break; + case 0x11: + model = &op_athlon_spec; + cpu_type = "x86-64/family11h"; + break; } break; |