diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-10-10 13:21:37 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-10-10 13:21:37 -0400 |
commit | 47a74bdcbfeff543f706dc0e385eebbb5d655ed2 (patch) | |
tree | c95a1f8137615bc8c4dcc26af53f55a7f1859f1b /tools/perf/builtin-script.c | |
parent | 629eb703d3e46aa570c6c91235d38fd09ed8c58b (diff) | |
parent | aa7b4e02b328f0589b6133e72aafb1289f614a79 (diff) |
Merge tag 'perf-urgent-for-mingo-4.14-20171010' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull perf/urgent fixes from Arnaldo Carvalho de Melo:
- Unbreak 'perf record' for arm/arm64 with events with explicit PMU (Mark Rutland)
- Add missing separator for "perf script -F ip,brstack" (and brstackoff) (Mark Santaniello)
- One line, comment only, sync kernel ABI header with tooling header (Arnaldo Carvalho de Melo)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r-- | tools/perf/builtin-script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index 3d4c3b5e1868..0c977b6e0f8b 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c | |||
@@ -586,7 +586,7 @@ static void print_sample_brstack(struct perf_sample *sample, | |||
586 | thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt); | 586 | thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt); |
587 | } | 587 | } |
588 | 588 | ||
589 | printf("0x%"PRIx64, from); | 589 | printf(" 0x%"PRIx64, from); |
590 | if (PRINT_FIELD(DSO)) { | 590 | if (PRINT_FIELD(DSO)) { |
591 | printf("("); | 591 | printf("("); |
592 | map__fprintf_dsoname(alf.map, stdout); | 592 | map__fprintf_dsoname(alf.map, stdout); |
@@ -681,7 +681,7 @@ static void print_sample_brstackoff(struct perf_sample *sample, | |||
681 | if (alt.map && !alt.map->dso->adjust_symbols) | 681 | if (alt.map && !alt.map->dso->adjust_symbols) |
682 | to = map__map_ip(alt.map, to); | 682 | to = map__map_ip(alt.map, to); |
683 | 683 | ||
684 | printf("0x%"PRIx64, from); | 684 | printf(" 0x%"PRIx64, from); |
685 | if (PRINT_FIELD(DSO)) { | 685 | if (PRINT_FIELD(DSO)) { |
686 | printf("("); | 686 | printf("("); |
687 | map__fprintf_dsoname(alf.map, stdout); | 687 | map__fprintf_dsoname(alf.map, stdout); |