aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-annotate.c
diff options
context:
space:
mode:
authorTaeung Song <[email protected]>2017-07-20 19:28:53 +0000
committerArnaldo Carvalho de Melo <[email protected]>2017-07-21 11:23:50 +0000
commitbab89f6aed7e745893e009014354d0caaf62acf7 (patch)
treef1229f13ff462f6235b19850ed2822ec93891429 /tools/perf/builtin-annotate.c
parentperf annotate: Rename 'sum' to 'nr_samples' in struct sym_hist (diff)
downloadkernel-bab89f6aed7e745893e009014354d0caaf62acf7.tar.gz
kernel-bab89f6aed7e745893e009014354d0caaf62acf7.zip
perf hists: Pass perf_sample to __symbol__inc_addr_samples()
To pave the way to use perf_sample fields in the annotate code, storing sample->period in sym_hist->addr->period and its sum in sym_hist->period. Signed-off-by: Taeung Song <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Link: http://lkml.kernel.org/r/[email protected] [ split and adjusted from a larger patch ] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/builtin-annotate.c')
-rw-r--r--tools/perf/builtin-annotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
index 5205408e795b..96fe1a88c1e5 100644
--- a/tools/perf/builtin-annotate.c
+++ b/tools/perf/builtin-annotate.c
@@ -184,7 +184,7 @@ static int perf_evsel__add_sample(struct perf_evsel *evsel,
if (he == NULL)
return -ENOMEM;
- ret = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
+ ret = hist_entry__inc_addr_samples(he, sample, evsel->idx, al->addr);
hists__inc_nr_samples(hists, true);
return ret;
}