diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-15 15:10:28 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-20 13:19:28 -0300 |
commit | bc1c0f3dfa77619ad90f6fed290636cf54629d30 (patch) | |
tree | fb54b762e668c815a9a901d3aa65e64590174af3 /tools/perf/util/annotate.h | |
parent | 95aa89d92de8b8da6dc1469bfc560784ab177aba (diff) | |
download | op-kernel-dev-bc1c0f3dfa77619ad90f6fed290636cf54629d30.zip op-kernel-dev-bc1c0f3dfa77619ad90f6fed290636cf54629d30.tar.gz |
perf annotate: Move max_jump_sources to struct annotation
This is not useful only for the TUI, we'll want to somehow mark the
--stdio2 lines with the most jump sources too.
And moving this will allow us to change some function signatures from
annotate_browser to ui_browser, reducing boilerplate.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jin Yao <yao.jin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-vyggbbqd05k3k4mvv7z9l5px@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
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 17cd5d2..b8aca93 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -167,6 +167,7 @@ struct annotation { struct annotation_options *options; struct annotation_line **offsets; int nr_events; + int max_jump_sources; bool have_cycles; struct annotated_source *src; }; |