diff options
author | Adrian Hunter <[email protected]> | 2021-05-25 12:51:12 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2021-05-25 10:07:17 -0300 |
commit | a92bf335fd82eeee0e95705bfd25014ee0c8262e (patch) | |
tree | 6c2e7f6937bd83f511ac7a9a9d7e676340616e3c /tools/perf/scripts/python/bin/intel-pt-events-record | |
parent | 2ede92173faa14ed6a5272b3e7a6dd6daae3b161 (diff) |
perf scripts python: intel-pt-events.py: Add branches to script
As an example, add branch information to intel-pt-events.py script.
This shows how a simple python script can be used to customize
perf script output for Intel PT branch traces or power event traces.
Signed-off-by: Adrian Hunter <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Jiri Olsa <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/bin/intel-pt-events-record')
-rw-r--r-- | tools/perf/scripts/python/bin/intel-pt-events-record | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/scripts/python/bin/intel-pt-events-record b/tools/perf/scripts/python/bin/intel-pt-events-record index 10fe2b6977d4..6b9877cfe23e 100644 --- a/tools/perf/scripts/python/bin/intel-pt-events-record +++ b/tools/perf/scripts/python/bin/intel-pt-events-record @@ -1,8 +1,8 @@ #!/bin/bash # -# print Intel PT Power Events and PTWRITE. The intel_pt PMU event needs -# to be specified with appropriate config terms. +# print Intel PT Events including Power Events and PTWRITE. The intel_pt PMU +# event needs to be specified with appropriate config terms. # if ! echo "$@" | grep -q intel_pt ; then echo "Options must include the Intel PT event e.g. -e intel_pt/pwr_evt,ptw/" |