diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-04-05 01:40:16 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-04-05 01:40:16 -0400 |
commit | 11e445e9b499dfd96d7cbc55b2f22057fcf2804d (patch) | |
tree | 734bd484f042ad0baecf85dee15c2c69c9fc6026 /tools/perf/util/annotate.h | |
parent | fcc309e618c9e9ac4ede010d87522b0689549658 (diff) | |
parent | 99094a5e941fe88d95cbd594e6a41bee24003ecb (diff) |
Merge tag 'perf-core-for-mingo-4.12-20170404' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
Pull perf/core improvements and fixes from Arnaldo Carvalho de Melo:
User visible changes:
- Add missing number of samples in 'perf annotate --stdio -l --show-total-period'
(Taeung Song)
Vendor events updates:
- Add uncore_arb Intel vendor events in JSON format (Andi Kleen)
- Add uncore vendor events for Intel's Sandy Bridge, Ivy Bridge,
Haswell, Broadwell and Skylake architectures (Andi Kleen)
- Add missing UNC_M_DCLOCKTICKS Intel Broadwell DE uncore vendor event (Andi Kleen)
Infrastructure changes:
- Remove some more die() calls, avoiding sudden death in library code
(Arnaldo Carvalho de Melo)
- Add argument support for SDT events in powerpc (Ravi Bangoria)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/util/annotate.h')
-rw-r--r-- | tools/perf/util/annotate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index 09776b5af991..948aa8e6fd39 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h | |||
@@ -98,7 +98,7 @@ struct cyc_hist { | |||
98 | struct source_line_samples { | 98 | struct source_line_samples { |
99 | double percent; | 99 | double percent; |
100 | double percent_sum; | 100 | double percent_sum; |
101 | double nr; | 101 | u64 nr; |
102 | }; | 102 | }; |
103 | 103 | ||
104 | struct source_line { | 104 | struct source_line { |