diff options
| author | Jiri Olsa <[email protected]> | 2016-05-03 11:54:44 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2016-05-06 00:03:59 +0000 |
| commit | 2e0453af4e16e97268b9e66aad37beb607ed7c0f (patch) | |
| tree | f63df0eb99cf9dd0250d4ebc5b632e7043c394f8 /tools/perf/util/annotate.c | |
| parent | perf hists: Move sort__has_parent into struct perf_hpp_list (diff) | |
| download | kernel-2e0453af4e16e97268b9e66aad37beb607ed7c0f.tar.gz kernel-2e0453af4e16e97268b9e66aad37beb607ed7c0f.zip | |
perf hists: Move sort__has_sym into struct perf_hpp_list
Now we have sort dimensions private for struct hists, we need to make
dimension booleans hists specific as well.
Moving sort__has_sym into struct perf_hpp_list.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[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.c')
| -rw-r--r-- | tools/perf/util/annotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c index b795b6994144..d4b3d034c503 100644 --- a/tools/perf/util/annotate.c +++ b/tools/perf/util/annotate.c @@ -1665,5 +1665,5 @@ int hist_entry__annotate(struct hist_entry *he, size_t privsize) bool ui__has_annotation(void) { - return use_browser == 1 && sort__has_sym; + return use_browser == 1 && perf_hpp_list.sym; } |
