diff options
author | Jiri Olsa <jolsa@kernel.org> | 2016-05-03 07:54:42 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-05-05 20:03:58 -0400 |
commit | 52225036fa8f5aca4c1b7b4f12742f72a1bf9d73 (patch) | |
tree | 48a01c20e71c67cd76e859489944b952c2210a77 /tools/perf/builtin-diff.c | |
parent | 4679bccaa30893ccc5be35c5c5d44f5ab60c0a08 (diff) |
perf hists: Move sort__need_collapse 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__need_collapse into struct perf_hpp_list.
Adding hists__has macro to easily access this info perf struct hists
object.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1462276488-26683-2-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-diff.c')
-rw-r--r-- | tools/perf/builtin-diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c index 8053a8ceefda..9ce354f469dc 100644 --- a/tools/perf/builtin-diff.c +++ b/tools/perf/builtin-diff.c | |||
@@ -428,7 +428,7 @@ static void hists__baseline_only(struct hists *hists) | |||
428 | struct rb_root *root; | 428 | struct rb_root *root; |
429 | struct rb_node *next; | 429 | struct rb_node *next; |
430 | 430 | ||
431 | if (sort__need_collapse) | 431 | if (hists__has(hists, need_collapse)) |
432 | root = &hists->entries_collapsed; | 432 | root = &hists->entries_collapsed; |
433 | else | 433 | else |
434 | root = hists->entries_in; | 434 | root = hists->entries_in; |
@@ -450,7 +450,7 @@ static void hists__precompute(struct hists *hists) | |||
450 | struct rb_root *root; | 450 | struct rb_root *root; |
451 | struct rb_node *next; | 451 | struct rb_node *next; |
452 | 452 | ||
453 | if (sort__need_collapse) | 453 | if (hists__has(hists, need_collapse)) |
454 | root = &hists->entries_collapsed; | 454 | root = &hists->entries_collapsed; |
455 | else | 455 | else |
456 | root = hists->entries_in; | 456 | root = hists->entries_in; |