diff options
-rw-r--r-- | tools/perf/builtin-report.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 8e91c6eba18a..80fb90741b64 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -50,6 +50,7 @@ struct perf_report { | |||
50 | const char *pretty_printing_style; | 50 | const char *pretty_printing_style; |
51 | symbol_filter_t annotate_init; | 51 | symbol_filter_t annotate_init; |
52 | const char *cpu_list; | 52 | const char *cpu_list; |
53 | const char *symbol_filter_str; | ||
53 | DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); | 54 | DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS); |
54 | }; | 55 | }; |
55 | 56 | ||
@@ -400,6 +401,9 @@ static int __cmd_report(struct perf_report *rep) | |||
400 | list_for_each_entry(pos, &session->evlist->entries, node) { | 401 | list_for_each_entry(pos, &session->evlist->entries, node) { |
401 | struct hists *hists = &pos->hists; | 402 | struct hists *hists = &pos->hists; |
402 | 403 | ||
404 | if (pos->idx == 0) | ||
405 | hists->symbol_filter_str = rep->symbol_filter_str; | ||
406 | |||
403 | hists__collapse_resort(hists); | 407 | hists__collapse_resort(hists); |
404 | hists__output_resort(hists); | 408 | hists__output_resort(hists); |
405 | nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE]; | 409 | nr_samples += hists->stats.nr_events[PERF_RECORD_SAMPLE]; |
@@ -591,6 +595,8 @@ int cmd_report(int argc, const char **argv, const char *prefix __used) | |||
591 | "only consider symbols in these comms"), | 595 | "only consider symbols in these comms"), |
592 | OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", | 596 | OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", |
593 | "only consider these symbols"), | 597 | "only consider these symbols"), |
598 | OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter", | ||
599 | "only show symbols that (partially) match with this filter"), | ||
594 | OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, | 600 | OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, |
595 | "width[,width...]", | 601 | "width[,width...]", |
596 | "don't try to adjust column width, use these fixed values"), | 602 | "don't try to adjust column width, use these fixed values"), |