perf hists: Initialize all of he->stat with zeroes

Not just nr_events and period.
Reported-by: default avatarNamhyung Kim <namhyung@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-8nodd6b4bytyf1snf96oy531@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 61e94515
...@@ -742,9 +742,8 @@ static struct hist_entry *hists__add_dummy_entry(struct hists *hists, ...@@ -742,9 +742,8 @@ static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
he = hist_entry__new(pair); he = hist_entry__new(pair);
if (he) { if (he) {
he->stat.nr_events = 0; memset(&he->stat, 0, sizeof(he->stat));
he->stat.period = 0; he->hists = hists;
he->hists = hists;
rb_link_node(&he->rb_node, parent, p); rb_link_node(&he->rb_node, parent, p);
rb_insert_color(&he->rb_node, &hists->entries); rb_insert_color(&he->rb_node, &hists->entries);
hists__inc_nr_entries(hists, he); hists__inc_nr_entries(hists, he);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment