diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-06-25 14:55:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-06-25 14:55:21 -0400 |
commit | 35d8d5d47c0ef066197f629f71cdd6039693b86d (patch) | |
tree | 0156f16eed2f2f91b8b9f65143503ec0efdb1926 /tools/perf | |
parent | 1a8cca1880e6127a22cf6604b3c4ccd8b27cbf65 (diff) | |
parent | 977282ed17a0213c84d59498a1e3f7088e211470 (diff) |
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull perf fixes from Thomas Gleixner:
"Three fixlets for perf:
- Return the proper error code if aux buffers for a event are not
supported.
- Calculate the probe offset for inlined functions correctly
- Update the Skylake DTLB load/store miss event so it can count 1G
TLB entries as well"
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
perf probe: Fix probe definition for inlined functions
perf/x86/intel: Add 1G DTLB load/store miss support for SKL
perf/aux: Correct return code of rb_alloc_aux() if !has_aux(ev)
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/util/probe-event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index 84e7e698411e..a2670e9d652d 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c | |||
@@ -619,7 +619,7 @@ static int post_process_probe_trace_point(struct probe_trace_point *tp, | |||
619 | struct map *map, unsigned long offs) | 619 | struct map *map, unsigned long offs) |
620 | { | 620 | { |
621 | struct symbol *sym; | 621 | struct symbol *sym; |
622 | u64 addr = tp->address + tp->offset - offs; | 622 | u64 addr = tp->address - offs; |
623 | 623 | ||
624 | sym = map__find_symbol(map, addr); | 624 | sym = map__find_symbol(map, addr); |
625 | if (!sym) | 625 | if (!sym) |