aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-top.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@kernel.org>2012-09-11 00:34:27 -0400
committerJiri Olsa <jolsa@kernel.org>2014-06-01 08:34:56 -0400
commita0b51af367a6831330564c96dc4cc1ac63413701 (patch)
treedfaee76ff1dc0937725182803242899f36a51e05 /tools/perf/builtin-top.c
parentf8be1c8c48c8469d1ce95ccdc77b1e2c6a29700e (diff)
perf hists: Check if accumulated when adding a hist entry
To support callchain accumulation, @entry should be recognized if it's accumulated or not when add_hist_entry() called. The period of an accumulated entry should be added to ->stat_acc but not ->stat. Add @sample_self arg for that. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Tested-by: Arun Sharma <asharma@fb.com> Tested-by: Rodrigo Campos <rodrigo@sdfg.com.ar> Cc: Frederic Weisbecker <fweisbec@gmail.com> Link: http://lkml.kernel.org/r/1401335910-16832-5-git-send-email-namhyung@kernel.org Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r--tools/perf/builtin-top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 51309264d210..12e2e1227e47 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -247,7 +247,7 @@ static struct hist_entry *perf_evsel__add_hist_entry(struct perf_evsel *evsel,
247 pthread_mutex_lock(&evsel->hists.lock); 247 pthread_mutex_lock(&evsel->hists.lock);
248 he = __hists__add_entry(&evsel->hists, al, NULL, NULL, NULL, 248 he = __hists__add_entry(&evsel->hists, al, NULL, NULL, NULL,
249 sample->period, sample->weight, 249 sample->period, sample->weight,
250 sample->transaction); 250 sample->transaction, true);
251 pthread_mutex_unlock(&evsel->hists.lock); 251 pthread_mutex_unlock(&evsel->hists.lock);
252 if (he == NULL) 252 if (he == NULL)
253 return NULL; 253 return NULL;