treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / perf / util / counts.c
blobf94e1a23dad639313bdafcf6602e1f6c3ceff42e
1 // SPDX-License-Identifier: GPL-2.0
2 #include <errno.h>
3 #include <stdlib.h>
4 #include "evsel.h"
5 #include "counts.h"
6 #include <linux/zalloc.h>
8 struct perf_counts *perf_counts__new(int ncpus, int nthreads)
10 struct perf_counts *counts = zalloc(sizeof(*counts));
12 if (counts) {
13 struct xyarray *values;
15 values = xyarray__new(ncpus, nthreads, sizeof(struct perf_counts_values));
16 if (!values) {
17 free(counts);
18 return NULL;
21 counts->values = values;
23 values = xyarray__new(ncpus, nthreads, sizeof(bool));
24 if (!values) {
25 xyarray__delete(counts->values);
26 free(counts);
27 return NULL;
30 counts->loaded = values;
33 return counts;
36 void perf_counts__delete(struct perf_counts *counts)
38 if (counts) {
39 xyarray__delete(counts->loaded);
40 xyarray__delete(counts->values);
41 free(counts);
45 static void perf_counts__reset(struct perf_counts *counts)
47 xyarray__reset(counts->loaded);
48 xyarray__reset(counts->values);
51 void perf_evsel__reset_counts(struct evsel *evsel)
53 perf_counts__reset(evsel->counts);
56 int perf_evsel__alloc_counts(struct evsel *evsel, int ncpus, int nthreads)
58 evsel->counts = perf_counts__new(ncpus, nthreads);
59 return evsel->counts != NULL ? 0 : -ENOMEM;
62 void perf_evsel__free_counts(struct evsel *evsel)
64 perf_counts__delete(evsel->counts);
65 evsel->counts = NULL;