diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-15 21:46:22 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-20 19:19:29 +0300 |
commit | 0ca693b315aa6893c9d3552fa6a5d536c38b6c4a (patch) | |
tree | 9b32edfa0446ed7d598f3c7a393049bfe68c4390 /tools/perf/util/annotate.h | |
parent | 4850c92e40835ea9ded3cd2051d4c95b2b69e426 (diff) | |
download | linux-0ca693b315aa6893c9d3552fa6a5d536c38b6c4a.tar.xz |
perf annotate: Move 'start' to struct annotation
Another field that is not TUI specific.
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-jj3dwswndft5mln8hu9k0idv@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 2018a47790c7..0424c127b004 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -169,6 +169,7 @@ struct annotated_source { struct annotation { pthread_mutex_t lock; u64 max_coverage; + u64 start; struct annotation_options *options; struct annotation_line **offsets; int nr_events; |