perf evsel: Rename perf_evsel__compute_deltas() to evsel__compute_deltas()

As it is a 'struct evsel' method, not part of tools/lib/perf/, aka
libperf, to whom the perf_ prefix belongs.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 5eb88f04
...@@ -1283,8 +1283,8 @@ void evsel__delete(struct evsel *evsel) ...@@ -1283,8 +1283,8 @@ void evsel__delete(struct evsel *evsel)
free(evsel); free(evsel);
} }
void perf_evsel__compute_deltas(struct evsel *evsel, int cpu, int thread, void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
struct perf_counts_values *count) struct perf_counts_values *count)
{ {
struct perf_counts_values tmp; struct perf_counts_values tmp;
...@@ -1440,7 +1440,7 @@ int __perf_evsel__read_on_cpu(struct evsel *evsel, ...@@ -1440,7 +1440,7 @@ int __perf_evsel__read_on_cpu(struct evsel *evsel,
if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0) if (readn(FD(evsel, cpu, thread), &count, nv * sizeof(u64)) <= 0)
return -errno; return -errno;
perf_evsel__compute_deltas(evsel, cpu, thread, &count); evsel__compute_deltas(evsel, cpu, thread, &count);
perf_counts_values__scale(&count, scale, NULL); perf_counts_values__scale(&count, scale, NULL);
*perf_counts(evsel->counts, cpu, thread) = count; *perf_counts(evsel->counts, cpu, thread) = count;
return 0; return 0;
......
...@@ -151,8 +151,8 @@ static inline int evsel__nr_cpus(struct evsel *evsel) ...@@ -151,8 +151,8 @@ static inline int evsel__nr_cpus(struct evsel *evsel)
void perf_counts_values__scale(struct perf_counts_values *count, void perf_counts_values__scale(struct perf_counts_values *count,
bool scale, s8 *pscaled); bool scale, s8 *pscaled);
void perf_evsel__compute_deltas(struct evsel *evsel, int cpu, int thread, void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
struct perf_counts_values *count); struct perf_counts_values *count);
int perf_evsel__object_config(size_t object_size, int perf_evsel__object_config(size_t object_size,
int (*init)(struct evsel *evsel), int (*init)(struct evsel *evsel),
......
...@@ -302,7 +302,7 @@ process_counter_values(struct perf_stat_config *config, struct evsel *evsel, ...@@ -302,7 +302,7 @@ process_counter_values(struct perf_stat_config *config, struct evsel *evsel,
case AGGR_NODE: case AGGR_NODE:
case AGGR_NONE: case AGGR_NONE:
if (!evsel->snapshot) if (!evsel->snapshot)
perf_evsel__compute_deltas(evsel, cpu, thread, count); evsel__compute_deltas(evsel, cpu, thread, count);
perf_counts_values__scale(count, config->scale, NULL); perf_counts_values__scale(count, config->scale, NULL);
if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) { if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) {
perf_stat__update_shadow_stats(evsel, count->val, perf_stat__update_shadow_stats(evsel, count->val,
...@@ -384,7 +384,7 @@ int perf_stat_process_counter(struct perf_stat_config *config, ...@@ -384,7 +384,7 @@ int perf_stat_process_counter(struct perf_stat_config *config,
return 0; return 0;
if (!counter->snapshot) if (!counter->snapshot)
perf_evsel__compute_deltas(counter, -1, -1, aggr); evsel__compute_deltas(counter, -1, -1, aggr);
perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled); perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled);
for (i = 0; i < 3; i++) for (i = 0; i < 3; i++)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册