File perf-scripts-python-intel-pt-events.py-Fix-printing-of-switch-events.patch of Package perf
xxxxxxxxxx
1
From: Adrian Hunter <adrian.hunter@intel.com>
2
Date: Wed, 15 Dec 2021 10:06:36 +0200
3
Subject: perf scripts python: intel-pt-events.py: Fix printing of switch
4
events
5
Git-commit: 0f80bfbf4919e32f52fe1312c3900ff4fbb7eeb9
6
Patch-mainline: v5.16-rc8
7
References: git-fixes
8
9
The intel-pt-events.py script displays only the last of consecutive switch
10
statements but that may not be the last switch event for the CPU. Fix by
11
keeping a dictionary of last context switch keyed by CPU, and make it
12
possible to see all switch events by adding option --all-switch-events.
13
14
Fixes: a92bf335fd82eeee ("perf scripts python: intel-pt-events.py: Add branches to script")
15
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
16
Cc: Jiri Olsa <jolsa@redhat.com>
17
Cc: Namhyung Kim <namhyung@kernel.org>
18
Cc: Riccardo Mancini <rickyman7@gmail.com>
19
Cc: stable@vger.kernel.org
20
Link: https://lore.kernel.org/r/20211215080636.149562-4-adrian.hunter@intel.com
21
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
22
Signed-off-by: Tony Jones <tonyj@suse.de>
23
---
24
tools/perf/scripts/python/intel-pt-events.py | 23 +++++++++++++----------
25
1 file changed, 13 insertions(+), 10 deletions(-)
26
27
diff --git a/tools/perf/scripts/python/intel-pt-events.py b/tools/perf/scripts/python/intel-pt-events.py
28
index 1d3a189a9a54..66452a8ec358 100644
29
--- a/tools/perf/scripts/python/intel-pt-events.py
30
+++ b/tools/perf/scripts/python/intel-pt-events.py
31
32
except:
33
broken_pipe_exception = IOError
34
35
-glb_switch_str = None
36
-glb_switch_printed = True
37
+glb_switch_str = {}
38
glb_insn = False
39
glb_disassembler = None
40
glb_src = False
41
42
ap = argparse.ArgumentParser(usage = "", add_help = False)
43
ap.add_argument("--insn-trace", action='store_true')
44
ap.add_argument("--src-trace", action='store_true')
45
+ ap.add_argument("--all-switch-events", action='store_true')
46
global glb_args
47
global glb_insn
48
global glb_src
49
50
print(start_str, src_str)
51
52
def do_process_event(param_dict):
53
- global glb_switch_printed
54
- if not glb_switch_printed:
55
- print(glb_switch_str)
56
- glb_switch_printed = True
57
event_attr = param_dict["attr"]
58
sample = param_dict["sample"]
59
raw_buf = param_dict["raw_buf"]
60
61
dso = get_optional(param_dict, "dso")
62
symbol = get_optional(param_dict, "symbol")
63
64
+ cpu = sample["cpu"]
65
+ if cpu in glb_switch_str:
66
+ print(glb_switch_str[cpu])
67
+ del glb_switch_str[cpu]
68
+
69
if name[0:12] == "instructions":
70
if glb_src:
71
print_srccode(comm, param_dict, sample, symbol, dso, True)
72
73
sys.exit(1)
74
75
def context_switch(ts, cpu, pid, tid, np_pid, np_tid, machine_pid, out, out_preempt, *x):
76
- global glb_switch_printed
77
- global glb_switch_str
78
if out:
79
out_str = "Switch out "
80
else:
81
82
machine_str = ""
83
else:
84
machine_str = "machine PID %d" % machine_pid
85
- glb_switch_str = "%16s %5d/%-5d [%03u] %9u.%09u %5d/%-5d %s %s" % \
86
+ switch_str = "%16s %5d/%-5d [%03u] %9u.%09u %5d/%-5d %s %s" % \
87
(out_str, pid, tid, cpu, ts / 1000000000, ts %1000000000, np_pid, np_tid, machine_str, preempt_str)
88
- glb_switch_printed = False
89
+ if glb_args.all_switch_events:
90
+ print(switch_str);
91
+ else:
92
+ global glb_switch_str
93
+ glb_switch_str[cpu] = switch_str
94
95