|
@@ -876,9 +876,8 @@ void perf_evsel__delete(struct perf_evsel *evsel)
|
|
free(evsel);
|
|
free(evsel);
|
|
}
|
|
}
|
|
|
|
|
|
-static inline void compute_deltas(struct perf_evsel *evsel,
|
|
|
|
- int cpu,
|
|
|
|
- struct perf_counts_values *count)
|
|
|
|
|
|
+void perf_evsel__compute_deltas(struct perf_evsel *evsel, int cpu,
|
|
|
|
+ struct perf_counts_values *count)
|
|
{
|
|
{
|
|
struct perf_counts_values tmp;
|
|
struct perf_counts_values tmp;
|
|
|
|
|
|
@@ -913,7 +912,7 @@ int __perf_evsel__read_on_cpu(struct perf_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;
|
|
|
|
|
|
- compute_deltas(evsel, cpu, &count);
|
|
|
|
|
|
+ perf_evsel__compute_deltas(evsel, cpu, &count);
|
|
|
|
|
|
if (scale) {
|
|
if (scale) {
|
|
if (count.run == 0)
|
|
if (count.run == 0)
|
|
@@ -956,7 +955,7 @@ int __perf_evsel__read(struct perf_evsel *evsel,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- compute_deltas(evsel, -1, aggr);
|
|
|
|
|
|
+ perf_evsel__compute_deltas(evsel, -1, aggr);
|
|
|
|
|
|
evsel->counts->scaled = 0;
|
|
evsel->counts->scaled = 0;
|
|
if (scale) {
|
|
if (scale) {
|