diff options
Diffstat (limited to 'tools/perf/scripts/python/stackcollapse.py')
-rwxr-xr-x | tools/perf/scripts/python/stackcollapse.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/scripts/python/stackcollapse.py b/tools/perf/scripts/python/stackcollapse.py index 1697b5e18c96..5e703efaddcc 100755 --- a/tools/perf/scripts/python/stackcollapse.py +++ b/tools/perf/scripts/python/stackcollapse.py | |||
@@ -19,6 +19,8 @@ | |||
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 |
@@ -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])) |