aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/builtin-report.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 0d39e805be2d..7e690f73b516 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -467,7 +467,7 @@ static int call__match(struct symbol *sym)
467 return 0; 467 return 0;
468} 468}
469 469
470static struct symbol **resolve_callchain(struct thread *thread, struct map *map, 470static struct symbol **resolve_callchain(struct thread *thread,
471 struct ip_callchain *chain, 471 struct ip_callchain *chain,
472 struct symbol **parent) 472 struct symbol **parent)
473{ 473{
@@ -496,10 +496,10 @@ static struct symbol **resolve_callchain(struct thread *thread, struct map *map,
496 case PERF_CONTEXT_HV: 496 case PERF_CONTEXT_HV:
497 break; 497 break;
498 case PERF_CONTEXT_KERNEL: 498 case PERF_CONTEXT_KERNEL:
499 sym = kernel_maps__find_symbol(ip, &map, NULL); 499 sym = kernel_maps__find_symbol(ip, NULL, NULL);
500 break; 500 break;
501 default: 501 default:
502 sym = resolve_symbol(thread, &map, &ip); 502 sym = resolve_symbol(thread, NULL, &ip);
503 break; 503 break;
504 } 504 }
505 505
@@ -529,7 +529,7 @@ hist_entry__add(struct thread *thread, struct map *map,
529 struct hist_entry *he; 529 struct hist_entry *he;
530 530
531 if ((sort__has_parent || callchain) && chain) 531 if ((sort__has_parent || callchain) && chain)
532 syms = resolve_callchain(thread, map, chain, &parent); 532 syms = resolve_callchain(thread, chain, &parent);
533 533
534 he = __hist_entry__add(thread, map, sym, parent, 534 he = __hist_entry__add(thread, map, sym, parent,
535 ip, count, level, &hit); 535 ip, count, level, &hit);