diff options
author | Namhyung Kim <namhyung@kernel.org> | 2015-04-22 16:18:13 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-05-05 18:13:11 -0300 |
commit | d8a0f80042efc4ba08977f3d66fc4678037fe456 (patch) | |
tree | ecbbb77da11046c6400a719e10844e065ef8846c /tools | |
parent | 297508216556fbf4e3f70fb97d03280741b4a709 (diff) | |
download | linux-stable-d8a0f80042efc4ba08977f3d66fc4678037fe456.tar.gz linux-stable-d8a0f80042efc4ba08977f3d66fc4678037fe456.tar.bz2 linux-stable-d8a0f80042efc4ba08977f3d66fc4678037fe456.zip |
perf tools: Move init_have_children field to the unnamed union
The init_have_children is used to init callchain info only for TUI. So
it'd be better to move it to the TUI-specific unnamed union member.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1429687101-4360-3-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/sort.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h index 7f0c0a8d615d..4d923e6e0069 100644 --- a/tools/perf/util/sort.h +++ b/tools/perf/util/sort.h @@ -96,7 +96,6 @@ struct hist_entry { /* We are added by hists__add_dummy_entry. */ bool dummy; - bool init_have_children; char level; u8 filtered; union { @@ -109,6 +108,7 @@ struct hist_entry { struct /* for TUI */ { u16 row_offset; u16 nr_rows; + bool init_have_children; }; }; char *srcline; |