diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-15 15:43:18 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2018-03-20 13:19:29 -0300 |
commit | 4850c92e40835ea9ded3cd2051d4c95b2b69e426 (patch) | |
tree | 0f1bd7a56dc42c880fb77d6de026263ffddf85a3 /tools/perf/util/annotate.h | |
parent | 0db45bcfac8586c6f5b732f114f456f2f788b19f (diff) | |
download | op-kernel-dev-4850c92e40835ea9ded3cd2051d4c95b2b69e426.zip op-kernel-dev-4850c92e40835ea9ded3cd2051d4c95b2b69e426.tar.gz |
perf annotate: Nuke struct browser_line
The information in there are all related to things already moved to
struct annotation, so move those members to struct annotation_line.
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-uc2b9c8iocvuuvbl7hyind84@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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index ab4a8b7..2018a47 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -95,6 +95,8 @@ struct annotation_line { u64 cycles; size_t privsize; char *path; + u32 idx; + int idx_asm; int samples_nr; struct annotation_data samples[0]; }; |