提交 a0b404f4 编写于 作者: N Namhyung Kim 提交者: Arnaldo Carvalho de Melo

perf diff: Make hist_entry_diff fields union

The period_ratio_delta, period_ratio and wdiff are never by used at the
same time.  Instead, Just one of them is accessed according to a
comparison method.  So make it union to reduce memory footprint.
Signed-off-by: NNamhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1429416255-12070-3-git-send-email-namhyung@kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 cc5e461a
...@@ -58,15 +58,16 @@ struct he_stat { ...@@ -58,15 +58,16 @@ struct he_stat {
struct hist_entry_diff { struct hist_entry_diff {
bool computed; bool computed;
union {
/* PERF_HPP__DELTA */
double period_ratio_delta;
/* PERF_HPP__DELTA */ /* PERF_HPP__RATIO */
double period_ratio_delta; double period_ratio;
/* PERF_HPP__RATIO */
double period_ratio;
/* HISTC_WEIGHTED_DIFF */ /* HISTC_WEIGHTED_DIFF */
s64 wdiff; s64 wdiff;
};
}; };
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册