diff options
Diffstat (limited to 'tools/perf/util')
| -rw-r--r-- | tools/perf/util/metricgroup.c | 10 | ||||
| -rw-r--r-- | tools/perf/util/pmu.c | 2 | ||||
| -rw-r--r-- | tools/perf/util/s390-sample-raw.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c index a6a5ed44a679..6231044a491e 100644 --- a/tools/perf/util/metricgroup.c +++ b/tools/perf/util/metricgroup.c @@ -527,7 +527,7 @@ void metricgroup__print(const struct print_callbacks *print_cb, void *print_stat groups.node_delete = mep_delete; table = pmu_metrics_table__find(); if (table) { - pmu_metrics_table_for_each_metric(table, + pmu_metrics_table__for_each_metric(table, metricgroup__add_to_mep_groups_callback, &groups); } @@ -1069,7 +1069,7 @@ static bool metricgroup__find_metric(const char *pmu, .pm = pm, }; - return pmu_metrics_table_for_each_metric(table, metricgroup__find_metric_callback, &data) + return pmu_metrics_table__for_each_metric(table, metricgroup__find_metric_callback, &data) ? true : false; } @@ -1255,7 +1255,7 @@ static int metricgroup__add_metric(const char *pmu, const char *metric_name, con * Iterate over all metrics seeing if metric matches either the * name or group. When it does add the metric to the list. */ - ret = pmu_metrics_table_for_each_metric(table, metricgroup__add_metric_callback, + ret = pmu_metrics_table__for_each_metric(table, metricgroup__add_metric_callback, &data); if (ret) goto out; @@ -1740,7 +1740,7 @@ bool metricgroup__has_metric(const char *pmu, const char *metric) if (!table) return false; - return pmu_metrics_table_for_each_metric(table, metricgroup__has_metric_callback, &data) + return pmu_metrics_table__for_each_metric(table, metricgroup__has_metric_callback, &data) ? true : false; } @@ -1770,7 +1770,7 @@ unsigned int metricgroups__topdown_max_level(void) if (!table) return false; - pmu_metrics_table_for_each_metric(table, metricgroup__topdown_max_level_callback, + pmu_metrics_table__for_each_metric(table, metricgroup__topdown_max_level_callback, &max_level); return max_level; } diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c index 268aaebfa70c..d91367155e29 100644 --- a/tools/perf/util/pmu.c +++ b/tools/perf/util/pmu.c @@ -896,7 +896,7 @@ void pmu_add_cpu_aliases_table(struct perf_pmu *pmu, const struct pmu_events_tab .pmu = pmu, }; - pmu_events_table_for_each_event(table, pmu_add_cpu_aliases_map_callback, &data); + pmu_events_table__for_each_event(table, pmu_add_cpu_aliases_map_callback, &data); free(data.default_pmu_name); } diff --git a/tools/perf/util/s390-sample-raw.c b/tools/perf/util/s390-sample-raw.c index c10b891dbad6..91330c874170 100644 --- a/tools/perf/util/s390-sample-raw.c +++ b/tools/perf/util/s390-sample-raw.c @@ -168,7 +168,7 @@ static const char *get_counter_name(int set, int nr, const struct pmu_events_tab if (!table) return NULL; - pmu_events_table_for_each_event(table, get_counter_name_callback, &data); + pmu_events_table__for_each_event(table, get_counter_name_callback, &data); return data.result; } |
