aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Eranian <eranian@google.com>2015-12-03 17:33:18 -0500
committerIngo Molnar <mingo@kernel.org>2016-01-06 05:15:34 -0500
commit1424a09a9e1839285e948d4ea9fdfca26c9a2086 (patch)
tree6802e3edfd1e24e3b910c7dcc76be4c3a115811a
parent6fc2e83077b05a061afe9b24f2fdff7a0434eb67 (diff)
perf/x86: fix PEBS issues on Intel Atom/Core2
This patch fixes broken PEBS support on Intel Atom and Core2 due to wrong pointer arithmetic in intel_pmu_drain_pebs_core(). The get_next_pebs_record_by_bit() was called on PEBS format fmt0 which does not use the pebs_record_nhm layout. Signed-off-by: Stephane Eranian <eranian@google.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vince Weaver <vincent.weaver@maine.edu> Cc: kan.liang@intel.com Fixes: 21509084f999 ("perf/x86/intel: Handle multiple records in the PEBS buffer") Link: http://lkml.kernel.org/r/1449182000-31524-3-git-send-email-eranian@google.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--arch/x86/kernel/cpu/perf_event_intel_ds.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/perf_event_intel_ds.c b/arch/x86/kernel/cpu/perf_event_intel_ds.c
index 9c0f8d464bc0..a7463ed0b40e 100644
--- a/arch/x86/kernel/cpu/perf_event_intel_ds.c
+++ b/arch/x86/kernel/cpu/perf_event_intel_ds.c
@@ -1106,6 +1106,13 @@ get_next_pebs_record_by_bit(void *base, void *top, int bit)
1106 void *at; 1106 void *at;
1107 u64 pebs_status; 1107 u64 pebs_status;
1108 1108
1109 /*
1110 * fmt0 does not have a status bitfield (does not use
1111 * perf_record_nhm format)
1112 */
1113 if (x86_pmu.intel_cap.pebs_format < 1)
1114 return base;
1115
1109 if (base == NULL) 1116 if (base == NULL)
1110 return NULL; 1117 return NULL;
1111 1118
@@ -1191,7 +1198,7 @@ static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
1191 if (!event->attr.precise_ip) 1198 if (!event->attr.precise_ip)
1192 return; 1199 return;
1193 1200
1194 n = (top - at) / x86_pmu.pebs_record_size; 1201 n = top - at;
1195 if (n <= 0) 1202 if (n <= 0)
1196 return; 1203 return;
1197 1204