diff options
| author | Takashi Iwai <tiwai@suse.de> | 2019-04-11 08:36:30 -0400 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2019-04-11 08:36:30 -0400 |
| commit | 9b0dcd0e5a27958b57e3e390f63c098d63a055da (patch) | |
| tree | de778d683f121d3062df316994e9c4cf195eb12c /tools/perf/scripts/python/stackcollapse.py | |
| parent | d7a181da2dfa3190487c446042ba01e07d851c74 (diff) | |
| parent | ac71317e6be01812cc0c54d8be6d3c1139c8380b (diff) | |
Merge tag 'asoc-fix-v5.1-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v5.1
A few core fixes along with the driver specific ones, mainly fixing
small issues that only affect x86 platforms for various reasons (their
unusual machine enumeration mechanisms mainly, plus a fix for error
handling in topology).
There's some of the driver fixes that look larger than they are, like
the hdmi-codec changes which resulted in an indentation change, and most
of the other large changes are for new drivers like the STM32 changes.
Diffstat (limited to 'tools/perf/scripts/python/stackcollapse.py')
| -rwxr-xr-x | tools/perf/scripts/python/stackcollapse.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/perf/scripts/python/stackcollapse.py b/tools/perf/scripts/python/stackcollapse.py index 1697b5e18c96..b1c4def1410a 100755 --- a/tools/perf/scripts/python/stackcollapse.py +++ b/tools/perf/scripts/python/stackcollapse.py | |||
| @@ -19,13 +19,15 @@ | |||
| 19 | # Written by Paolo Bonzini <pbonzini@redhat.com> | 19 | # Written by Paolo Bonzini <pbonzini@redhat.com> |
| 20 | # Based on Brendan Gregg's stackcollapse-perf.pl script. | 20 | # Based on Brendan Gregg's stackcollapse-perf.pl script. |
| 21 | 21 | ||
| 22 | from __future__ import print_function | ||
| 23 | |||
| 22 | import os | 24 | import os |
| 23 | import sys | 25 | import sys |
| 24 | from collections import defaultdict | 26 | from collections import defaultdict |
| 25 | from optparse import OptionParser, make_option | 27 | from optparse import OptionParser, make_option |
| 26 | 28 | ||
| 27 | sys.path.append(os.environ['PERF_EXEC_PATH'] + \ | 29 | sys.path.append(os.environ['PERF_EXEC_PATH'] + \ |
| 28 | '/scripts/python/Perf-Trace-Util/lib/Perf/Trace') | 30 | '/scripts/python/Perf-Trace-Util/lib/Perf/Trace') |
| 29 | 31 | ||
| 30 | from perf_trace_context import * | 32 | from perf_trace_context import * |
| 31 | from Core import * | 33 | from Core import * |
| @@ -120,7 +122,6 @@ def process_event(param_dict): | |||
| 120 | lines[stack_string] = lines[stack_string] + 1 | 122 | lines[stack_string] = lines[stack_string] + 1 |
| 121 | 123 | ||
| 122 | def trace_end(): | 124 | def trace_end(): |
| 123 | list = lines.keys() | 125 | list = sorted(lines) |
| 124 | list.sort() | ||
| 125 | for stack in list: | 126 | for stack in list: |
| 126 | print "%s %d" % (stack, lines[stack]) | 127 | print("%s %d" % (stack, lines[stack])) |
