diff options
| author | Jiri Olsa <[email protected]> | 2018-08-04 13:05:13 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2018-08-08 18:55:50 +0000 |
| commit | 796ca33d5ceb621f238021c34cff8cfaa1100623 (patch) | |
| tree | 1a8db3c6c68f6642adff116a0cc4fda98195f024 /tools/perf/util/annotate.h | |
| parent | perf annotate: Add PERCENT_PERIOD_GLOBAL percent value (diff) | |
| download | kernel-796ca33d5ceb621f238021c34cff8cfaa1100623.tar.gz kernel-796ca33d5ceb621f238021c34cff8cfaa1100623.zip | |
perf annotate: Add percent_type to struct annotation_options
It will be used to carry user selection of percent type for annotation
output.
Passing the percent_type to the annotation_line__print function as the
first step and making it default to current percentage type
(PERCENT_HITS_LOCAL) value.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/util/annotate.h')
| -rw-r--r-- | tools/perf/util/annotate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index 48fe2aa6b5a8..145dec845f33 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -82,6 +82,7 @@ struct annotation_options { int context; const char *objdump_path; const char *disassembler_style; + unsigned int percent_type; }; enum { |
