Commit a8e02324 authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf stat: Use xyarray for cpu evsel counts

Switching single dimensional array of 'struct perf_counts_values'
with xyarray object, so we could store thread dimension counts.
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1435310967-14570-6-git-send-email-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 1ac77e1c
...@@ -218,7 +218,7 @@ static void perf_stat__reset_stats(struct perf_evlist *evlist) ...@@ -218,7 +218,7 @@ static void perf_stat__reset_stats(struct perf_evlist *evlist)
evlist__for_each(evlist, evsel) { evlist__for_each(evlist, evsel) {
perf_evsel__reset_stat_priv(evsel); perf_evsel__reset_stat_priv(evsel);
perf_evsel__reset_counts(evsel, perf_evsel__nr_cpus(evsel)); perf_evsel__reset_counts(evsel);
} }
perf_stat__reset_shadow_stats(); perf_stat__reset_shadow_stats();
......
...@@ -46,7 +46,7 @@ int test__openat_syscall_event(void) ...@@ -46,7 +46,7 @@ int test__openat_syscall_event(void)
if (perf_counts(evsel->counts, 0)->val != nr_openat_calls) { if (perf_counts(evsel->counts, 0)->val != nr_openat_calls) {
pr_debug("perf_evsel__read_on_cpu: expected to intercept %d calls, got %" PRIu64 "\n", pr_debug("perf_evsel__read_on_cpu: expected to intercept %d calls, got %" PRIu64 "\n",
nr_openat_calls, evsel->counts->cpu[0].val); nr_openat_calls, perf_counts(evsel->counts, 0)->val);
goto out_close_fd; goto out_close_fd;
} }
......
...@@ -97,26 +97,39 @@ void perf_stat_evsel_id_init(struct perf_evsel *evsel) ...@@ -97,26 +97,39 @@ void perf_stat_evsel_id_init(struct perf_evsel *evsel)
struct perf_counts *perf_counts__new(int ncpus) struct perf_counts *perf_counts__new(int ncpus)
{ {
int size = sizeof(struct perf_counts) + struct perf_counts *counts = zalloc(sizeof(*counts));
ncpus * sizeof(struct perf_counts_values);
return zalloc(size); if (counts) {
struct xyarray *cpu;
cpu = xyarray__new(ncpus, 1, sizeof(struct perf_counts_values));
if (!cpu) {
free(counts);
return NULL;
}
counts->cpu = cpu;
}
return counts;
} }
void perf_counts__delete(struct perf_counts *counts) void perf_counts__delete(struct perf_counts *counts)
{ {
free(counts); if (counts) {
xyarray__delete(counts->cpu);
free(counts);
}
} }
static void perf_counts__reset(struct perf_counts *counts, int ncpus) static void perf_counts__reset(struct perf_counts *counts)
{ {
memset(counts, 0, (sizeof(*counts) + xyarray__reset(counts->cpu);
(ncpus * sizeof(struct perf_counts_values))));
} }
void perf_evsel__reset_counts(struct perf_evsel *evsel, int ncpus) void perf_evsel__reset_counts(struct perf_evsel *evsel)
{ {
perf_counts__reset(evsel->counts, ncpus); perf_counts__reset(evsel->counts);
} }
int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus) int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus)
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <linux/types.h> #include <linux/types.h>
#include <stdio.h> #include <stdio.h>
#include "xyarray.h"
struct stats struct stats
{ {
...@@ -45,13 +46,13 @@ struct perf_counts_values { ...@@ -45,13 +46,13 @@ struct perf_counts_values {
struct perf_counts { struct perf_counts {
s8 scaled; s8 scaled;
struct perf_counts_values aggr; struct perf_counts_values aggr;
struct perf_counts_values cpu[]; struct xyarray *cpu;
}; };
static inline struct perf_counts_values* static inline struct perf_counts_values*
perf_counts(struct perf_counts *counts, int cpu) perf_counts(struct perf_counts *counts, int cpu)
{ {
return &counts->cpu[cpu]; return xyarray__entry(counts->cpu, cpu, 0);
} }
void update_stats(struct stats *stats, u64 val); void update_stats(struct stats *stats, u64 val);
...@@ -88,7 +89,7 @@ void perf_stat__print_shadow_stats(FILE *out, struct perf_evsel *evsel, ...@@ -88,7 +89,7 @@ void perf_stat__print_shadow_stats(FILE *out, struct perf_evsel *evsel,
struct perf_counts *perf_counts__new(int ncpus); struct perf_counts *perf_counts__new(int ncpus);
void perf_counts__delete(struct perf_counts *counts); void perf_counts__delete(struct perf_counts *counts);
void perf_evsel__reset_counts(struct perf_evsel *evsel, int ncpus); void perf_evsel__reset_counts(struct perf_evsel *evsel);
int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus); int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus);
void perf_evsel__free_counts(struct perf_evsel *evsel); void perf_evsel__free_counts(struct perf_evsel *evsel);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment