forked from Minki/linux
perf annotate: Fix storing per line sym_hist_entry
The existing loop incremented the offset while using it as the array
index, when we went to an array of sym_hist_entry instances, we
should've moved the increment to outside of the array element reference,
oops, fix it.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Taeung Song <treeze.taeung@gmail.com>
Cc: Wang Nan <wangnan0@huawei.com>
Fixes: 461c17f00f
("perf annotate: Store the sample period in each histogram bucket")
Link: http://lkml.kernel.org/n/tip-s3dm6uyrazlpag3f0psfia07@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
ce9ee4a2de
commit
48cc330852
@ -963,8 +963,9 @@ double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset,
|
||||
u64 period = 0;
|
||||
|
||||
while (offset < end) {
|
||||
hits += h->addr[offset++].nr_samples;
|
||||
period += h->addr[offset++].period;
|
||||
hits += h->addr[offset].nr_samples;
|
||||
period += h->addr[offset].period;
|
||||
++offset;
|
||||
}
|
||||
|
||||
if (h->nr_samples) {
|
||||
|
Loading…
Reference in New Issue
Block a user