diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2022-01-24 10:41:47 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2022-02-15 17:09:25 -0300 |
commit | 1d0dc1ddf037b2f5ef205a4343cfe1384b769d7c (patch) | |
tree | ae7c6ff10c1b1e0ce88c85ce3c903e0b7caff145 | |
parent | 0d26ba8fec996f0452de5c97256ce1121926334a (diff) | |
download | linux-stable-1d0dc1ddf037b2f5ef205a4343cfe1384b769d7c.tar.gz linux-stable-1d0dc1ddf037b2f5ef205a4343cfe1384b769d7c.tar.bz2 linux-stable-1d0dc1ddf037b2f5ef205a4343cfe1384b769d7c.zip |
perf tools: Define new D (Intr Disable) and t (Intr Toggle) flags
Define 2 new flags to represent:
- when interrupts are disabled (D)
- when interrupt disabling toggles (t)
This gives 4 combinations:
no flag, interrupts enabled
t interrupts were enabled but become disabled
D interrupts are disabled
Dt interrupts were disabled but become enabled
Committer notes:
Those are control flow flags, as per 'tools/perf/Documentation/perf-intel-pt.txt:
<quote>
An interesting field that is not printed by default is 'flags' which can be
displayed as follows:
perf script --itrace=ibxwpe -F+flags
The flags are "bcrosyiABExgh" which stand for branch, call, return, conditional,
system, asynchronous, interrupt, transaction abort, trace begin, trace end,
in transaction, VM-entry, and VM-exit respectively.
</quote>
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20220124084201.2699795-12-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/util/event.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 9354619953e9..320cbcd5b902 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -101,9 +101,11 @@ enum { PERF_IP_FLAG_IN_TX = 1ULL << 10, PERF_IP_FLAG_VMENTRY = 1ULL << 11, PERF_IP_FLAG_VMEXIT = 1ULL << 12, + PERF_IP_FLAG_INTR_DISABLE = 1ULL << 13, + PERF_IP_FLAG_INTR_TOGGLE = 1ULL << 14, }; -#define PERF_IP_FLAG_CHARS "bcrosyiABExgh" +#define PERF_IP_FLAG_CHARS "bcrosyiABExghDt" #define PERF_BRANCH_MASK (\ PERF_IP_FLAG_BRANCH |\ |