perf tools: Refactor cpumap to hold nr and the map
[deliverable/linux.git] / tools / perf / util / cpumap.c
CommitLineData
a12b51c4
PM
1#include "util.h"
2#include "../perf.h"
3#include "cpumap.h"
4#include <assert.h>
5#include <stdio.h>
6
60d567e2 7static struct cpu_map *cpu_map__default_new(void)
a12b51c4 8{
60d567e2
ACM
9 struct cpu_map *cpus;
10 int nr_cpus;
a12b51c4
PM
11
12 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
60d567e2
ACM
13 if (nr_cpus < 0)
14 return NULL;
15
16 cpus = malloc(sizeof(*cpus) + nr_cpus * sizeof(int));
17 if (cpus != NULL) {
18 int i;
19 for (i = 0; i < nr_cpus; ++i)
20 cpus->map[i] = i;
a12b51c4 21
60d567e2
ACM
22 cpus->nr = nr_cpus;
23 }
a12b51c4 24
60d567e2 25 return cpus;
a12b51c4
PM
26}
27
60d567e2 28static struct cpu_map *cpu_map__trim_new(int nr_cpus, int *tmp_cpus)
a12b51c4 29{
60d567e2
ACM
30 size_t payload_size = nr_cpus * sizeof(int);
31 struct cpu_map *cpus = malloc(sizeof(*cpus) + payload_size);
32
33 if (cpus != NULL) {
34 cpus->nr = nr_cpus;
35 memcpy(cpus->map, tmp_cpus, payload_size);
36 }
37
38 return cpus;
39}
40
41static struct cpu_map *cpu_map__read_all_cpu_map(void)
42{
43 struct cpu_map *cpus = NULL;
a12b51c4
PM
44 FILE *onlnf;
45 int nr_cpus = 0;
60d567e2
ACM
46 int *tmp_cpus = NULL, *tmp;
47 int max_entries = 0;
a12b51c4
PM
48 int n, cpu, prev;
49 char sep;
50
51 onlnf = fopen("/sys/devices/system/cpu/online", "r");
52 if (!onlnf)
60d567e2 53 return cpu_map__default_new();
a12b51c4
PM
54
55 sep = 0;
56 prev = -1;
57 for (;;) {
58 n = fscanf(onlnf, "%u%c", &cpu, &sep);
59 if (n <= 0)
60 break;
61 if (prev >= 0) {
60d567e2
ACM
62 int new_max = nr_cpus + cpu - prev - 1;
63
64 if (new_max >= max_entries) {
65 max_entries = new_max + MAX_NR_CPUS / 2;
66 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
67 if (tmp == NULL)
68 goto out_free_tmp;
69 tmp_cpus = tmp;
70 }
71
a12b51c4 72 while (++prev < cpu)
60d567e2
ACM
73 tmp_cpus[nr_cpus++] = prev;
74 }
75 if (nr_cpus == max_entries) {
76 max_entries += MAX_NR_CPUS;
77 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
78 if (tmp == NULL)
79 goto out_free_tmp;
80 tmp_cpus = tmp;
a12b51c4 81 }
60d567e2
ACM
82
83 tmp_cpus[nr_cpus++] = cpu;
a12b51c4
PM
84 if (n == 2 && sep == '-')
85 prev = cpu;
86 else
87 prev = -1;
88 if (n == 1 || sep == '\n')
89 break;
90 }
a12b51c4 91
60d567e2
ACM
92 if (nr_cpus > 0)
93 cpus = cpu_map__trim_new(nr_cpus, tmp_cpus);
94 else
95 cpus = cpu_map__default_new();
96out_free_tmp:
97 free(tmp_cpus);
98 fclose(onlnf);
99 return cpus;
a12b51c4 100}
c45c6ea2 101
60d567e2 102struct cpu_map *cpu_map__new(const char *cpu_list)
c45c6ea2 103{
60d567e2 104 struct cpu_map *cpus = NULL;
c45c6ea2
SE
105 unsigned long start_cpu, end_cpu = 0;
106 char *p = NULL;
107 int i, nr_cpus = 0;
60d567e2
ACM
108 int *tmp_cpus = NULL, *tmp;
109 int max_entries = 0;
c45c6ea2
SE
110
111 if (!cpu_list)
60d567e2 112 return cpu_map__read_all_cpu_map();
c45c6ea2
SE
113
114 if (!isdigit(*cpu_list))
60d567e2 115 goto out;
c45c6ea2
SE
116
117 while (isdigit(*cpu_list)) {
118 p = NULL;
119 start_cpu = strtoul(cpu_list, &p, 0);
120 if (start_cpu >= INT_MAX
121 || (*p != '\0' && *p != ',' && *p != '-'))
122 goto invalid;
123
124 if (*p == '-') {
125 cpu_list = ++p;
126 p = NULL;
127 end_cpu = strtoul(cpu_list, &p, 0);
128
129 if (end_cpu >= INT_MAX || (*p != '\0' && *p != ','))
130 goto invalid;
131
132 if (end_cpu < start_cpu)
133 goto invalid;
134 } else {
135 end_cpu = start_cpu;
136 }
137
138 for (; start_cpu <= end_cpu; start_cpu++) {
139 /* check for duplicates */
140 for (i = 0; i < nr_cpus; i++)
60d567e2 141 if (tmp_cpus[i] == (int)start_cpu)
c45c6ea2
SE
142 goto invalid;
143
60d567e2
ACM
144 if (nr_cpus == max_entries) {
145 max_entries += MAX_NR_CPUS;
146 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
147 if (tmp == NULL)
148 goto invalid;
149 tmp_cpus = tmp;
150 }
151 tmp_cpus[nr_cpus++] = (int)start_cpu;
c45c6ea2
SE
152 }
153 if (*p)
154 ++p;
155
156 cpu_list = p;
157 }
c45c6ea2 158
60d567e2
ACM
159 if (nr_cpus > 0)
160 cpus = cpu_map__trim_new(nr_cpus, tmp_cpus);
161 else
162 cpus = cpu_map__default_new();
c45c6ea2 163invalid:
60d567e2
ACM
164 free(tmp_cpus);
165out:
166 return cpus;
167}
168
169struct cpu_map *cpu_map__dummy_new(void)
170{
171 struct cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int));
172
173 if (cpus != NULL) {
174 cpus->nr = 1;
175 cpus->map[0] = -1;
176 }
177
178 return cpus;
c45c6ea2 179}
This page took 0.074926 seconds and 5 git commands to generate.