diff options
| author | Vince Weaver <vincent.weaver@maine.edu> | 2016-10-21 16:55:21 -0400 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2016-10-24 06:49:45 +0200 |
| commit | c6e5df74f4a7a0d12ad20b329ab1aeae2979fc6f (patch) | |
| tree | 7cc375ef5e989a355e097be2fff0699d4e5e74b4 | |
| parent | c174eb6a075ae0cf2daae04b18cfc3f3211b2869 (diff) | |
| download | man-pages-c6e5df74f4a7a0d12ad20b329ab1aeae2979fc6f.tar.gz | |
perf_event_open.2: Add PERF_SAMPLE_BRANCH_CALL branch sample type
Linux 4.4 (c229bf9dc179d2023e185c0f705bdf68484c1e73) added
the PERF_SAMPLE_BRANCH_CALL branch sample type, which confusingly
is a direct-call only subset of what PERF_SAMPLE_BRANCH_ANY_CALL
provides.
Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>
| -rw-r--r-- | man2/perf_event_open.2 | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2 index fade28cae5..8d985b398a 100644 --- a/man2/perf_event_open.2 +++ b/man2/perf_event_open.2 @@ -1256,14 +1256,18 @@ following bits must be set. Any branch type. .TP .B PERF_SAMPLE_BRANCH_ANY_CALL -Any call branch. -.TP -.B PERF_SAMPLE_BRANCH_ANY_RETURN -Any return branch. +Any call branch (includes direct calls, indirect calls, and far jumps). .TP .B PERF_SAMPLE_BRANCH_IND_CALL Indirect calls. .TP +.BR PERF_SAMPLE_BRANCH_CALL " (since Linux 4.4)" +.\" commit c229bf9dc179d2023e185c0f705bdf68484c1e73 +Direct calls. +.TP +.B PERF_SAMPLE_BRANCH_ANY_RETURN +Any return branch. +.TP .BR PERF_SAMPLE_BRANCH_IND_JUMP " (since Linux 4.2)" .\" commit c9fdfa14c3792c0160849c484e83aa57afd80ccc Indirect jumps. |
