Re: [PATCH 09/27] perf stat: Introduce perf_counts function

From: Arnaldo Carvalho de Melo
Date: Tue Jun 23 2015 - 17:12:30 EST


Em Tue, Jun 23, 2015 at 12:36:10AM +0200, Jiri Olsa escreveu:
> Introducing perf_counts function, that returns
> 'struct perf_counts_values' pointer for given cpu.
> - evsel->counts->cpu[cpu] = *count;
> + *perf_counts(evsel->counts, cpu) = *count;

For consistency, just like thread_map__set_pid(), please have a:

perf_counts__set(evsel->counts, *cont);

In addition to its counterpart:

perf_counts__value(evsel->counts, cpu);

Since you're not storing multiple entries per bucket, we need to use the
"value" idiom.

- Arnaldo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/