diff options
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/builtin-report.c | 2 | ||||
-rw-r--r-- | tools/perf/util/hist.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index c47bf586fcba..a74059f0c45f 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -231,7 +231,7 @@ static int process_sample_event(struct perf_tool *tool, | |||
231 | return -1; | 231 | return -1; |
232 | } | 232 | } |
233 | 233 | ||
234 | if (al.filtered || (rep->hide_unresolved && al.sym == NULL)) | 234 | if (rep->hide_unresolved && al.sym == NULL) |
235 | return 0; | 235 | return 0; |
236 | 236 | ||
237 | if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap)) | 237 | if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap)) |
diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index 9507f33b02ff..f38590d7561b 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c | |||
@@ -422,7 +422,7 @@ struct hist_entry *__hists__add_entry(struct hists *hists, | |||
422 | .weight = weight, | 422 | .weight = weight, |
423 | }, | 423 | }, |
424 | .parent = sym_parent, | 424 | .parent = sym_parent, |
425 | .filtered = symbol__parent_filter(sym_parent), | 425 | .filtered = symbol__parent_filter(sym_parent) | al->filtered, |
426 | .hists = hists, | 426 | .hists = hists, |
427 | .branch_info = bi, | 427 | .branch_info = bi, |
428 | .mem_info = mi, | 428 | .mem_info = mi, |