10 #include <linux/bitmap.h> 25 nr_cpus = sysconf(_SC_NPROCESSORS_ONLN);
29 cpus =
malloc(
sizeof(*cpus) + nr_cpus *
sizeof(
int));
32 for (i = 0; i < nr_cpus; ++i)
36 refcount_set(&cpus->
refcnt, 1);
44 size_t payload_size = nr_cpus *
sizeof(int);
49 memcpy(cpus->
map, tmp_cpus, payload_size);
50 refcount_set(&cpus->
refcnt, 1);
60 int *tmp_cpus = NULL, *tmp;
68 n = fscanf(file,
"%u%c", &cpu, &sep);
72 int new_max = nr_cpus + cpu - prev - 1;
74 if (new_max >= max_entries) {
76 tmp = realloc(tmp_cpus, max_entries *
sizeof(
int));
83 tmp_cpus[nr_cpus++] = prev;
85 if (nr_cpus == max_entries) {
87 tmp = realloc(tmp_cpus, max_entries *
sizeof(
int));
93 tmp_cpus[nr_cpus++] = cpu;
94 if (n == 2 && sep ==
'-')
98 if (n == 1 || sep ==
'\n')
116 onlnf = fopen(
"/sys/devices/system/cpu/online",
"r");
128 unsigned long start_cpu, end_cpu = 0;
131 int *tmp_cpus = NULL, *tmp;
142 start_cpu = strtoul(cpu_list, &p, 0);
143 if (start_cpu >= INT_MAX
144 || (*p !=
'\0' && *p !=
',' && *p !=
'-'))
150 end_cpu = strtoul(cpu_list, &p, 0);
152 if (end_cpu >= INT_MAX || (*p !=
'\0' && *p !=
','))
155 if (end_cpu < start_cpu)
161 for (; start_cpu <= end_cpu; start_cpu++) {
163 for (i = 0; i < nr_cpus; i++)
164 if (tmp_cpus[i] == (
int)start_cpu)
167 if (nr_cpus == max_entries) {
169 tmp = realloc(tmp_cpus, max_entries *
sizeof(
int));
174 tmp_cpus[nr_cpus++] = (int)start_cpu;
200 for (i = 0; i < cpus->
nr; i++) {
206 if (cpus->
cpu[i] == (u16) -1)
209 map->
map[i] = (int) cpus->
cpu[i];
221 nr = bitmap_weight(mask->
mask, nbits);
227 for_each_set_bit(cpu, mask->
mask, nbits)
248 return fprintf(fp,
"%s\n", buf);
259 refcount_set(&cpus->
refcnt, 1);
273 for (i = 0; i <
nr; i++)
276 refcount_set(&cpus->
refcnt, 1);
285 WARN_ONCE(refcount_read(&map->
refcnt) != 0,
286 "cpu_map refcnt unbalanced\n");
294 refcount_inc(&map->
refcnt);
300 if (map && refcount_dec_and_test(&map->
refcnt))
309 "devices/system/cpu/cpu%d/topology/%s", cpu, name);
311 return sysfs__read_int(path, value);
332 static int cmp_ids(
const void *a,
const void *b)
334 return *(
int *)a - *(
int *)b;
346 c = calloc(1,
sizeof(*c) + nr *
sizeof(
int));
350 for (cpu = 0; cpu <
nr; cpu++) {
351 s1 =
f(cpus, cpu, data);
352 for (s2 = 0; s2 < c->
nr; s2++) {
353 if (s1 == c->
map[s2])
364 refcount_set(&c->
refcnt, 1);
396 return (s << 16) | (cpu & 0xffff);
416 if (filename__read_str(path, &buf, &num))
423 if ((buf[num] ==
',') || (buf[num] ==
'-')) {
428 if (sscanf(&buf[num],
"%d", max) < 1) {
452 mnt = sysfs__mountpoint();
457 ret = snprintf(path,
PATH_MAX,
"%s/devices/system/cpu/possible", mnt);
468 ret = snprintf(path,
PATH_MAX,
"%s/devices/system/cpu/present", mnt);
491 mnt = sysfs__mountpoint();
496 ret = snprintf(path,
PATH_MAX,
"%s/devices/system/node/possible", mnt);
537 pr_debug(
"cpu_map not initialized\n");
553 pr_err(
"%s: calloc failed\n", __func__);
565 struct dirent *dent1, *dent2;
567 unsigned int cpu,
mem;
577 mnt = sysfs__mountpoint();
581 n = snprintf(path,
PATH_MAX,
"%s/devices/system/node", mnt);
587 dir1 = opendir(path);
592 while ((dent1 = readdir(dir1)) != NULL) {
593 if (dent1->d_type != DT_DIR || sscanf(dent1->d_name,
"node%u", &mem) < 1)
596 n = snprintf(buf,
PATH_MAX,
"%s/%s", path, dent1->d_name);
605 while ((dent2 = readdir(dir2)) != NULL) {
606 if (dent2->d_type != DT_LNK || sscanf(dent2->d_name,
"cpu%u", &cpu) < 1)
625 for (i = 0; i < cpus->
nr; ++i) {
626 if (cpus->
map[i] == cpu)
635 return cpus->
map[idx];
640 int i, cpu,
start = -1;
644 #define COMMA first ? "" : "," 646 for (i = 0; i < map->
nr + 1; i++) {
647 bool last = i == map->
nr;
649 cpu = last ? INT_MAX : map->
map[i];
654 ret += snprintf(buf + ret, size - ret,
658 }
else if (((i - start) != (cpu - map->
map[start])) || last) {
662 ret += snprintf(buf + ret, size - ret,
666 ret += snprintf(buf + ret, size - ret,
668 map->
map[start], map->
map[end]);
677 pr_debug(
"cpumask list: %s\n", buf);
686 return val - 10 +
'a';
694 unsigned char *bitmap;
697 bitmap =
zalloc((last_cpu + 7) / 8);
698 if (bitmap == NULL) {
703 for (i = 0; i < map->
nr; i++) {
705 bitmap[cpu / 8] |= 1 << (cpu % 8);
708 for (cpu = last_cpu / 4 * 4; cpu >= 0; cpu -= 4) {
709 unsigned char bits = bitmap[cpu / 8];
717 if ((cpu % 32) == 0 && cpu > 0)
723 buf[size - 1] =
'\0';
static struct cpu_map * cpu_map__default_new(void)
static struct cpu_map * cpu_map__from_mask(struct cpu_map_mask *mask)
struct cpu_map * cpu_map__dummy_new(void)
int cpu_map__idx(struct cpu_map *cpus, int cpu)
int cpu_map__build_core_map(struct cpu_map *cpus, struct cpu_map **corep)
int cpu__get_node(int cpu)
struct cpu_map * cpu_map__new_data(struct cpu_map_data *data)
struct cpu_map * cpu_map__read(FILE *file)
size_t cpu_map__snprint_mask(struct cpu_map *map, char *buf, size_t size)
static void set_max_node_num(void)
size_t cpu_map__snprint(struct cpu_map *map, char *buf, size_t size)
size_t cpu_map__fprintf(struct cpu_map *map, FILE *fp)
static void cpu_map__delete(struct cpu_map *map)
void cpu_map__put(struct cpu_map *map)
static struct cpu_map * cpu_map__read_all_cpu_map(void)
#define pr_debug(fmt,...)
static int init_cpunode_map(void)
int cpu_map__cpu(struct cpu_map *cpus, int idx)
static int get_max_num(char *path, int *max)
static int max_present_cpu_num
static const char * cpu_list
int cpu__max_present_cpu(void)
bool cpu_map__has(struct cpu_map *cpus, int cpu)
x86 movsq based memcpy() in arch/x86/lib/memcpy_64.S") MEMCPY_FN(memcpy_erms
static int cpu__get_topology_int(int cpu, const char *name, int *value)
static void set_max_cpu_num(void)
int cpu_map__get_socket_id(int cpu)
int cpu_map__get_core(struct cpu_map *map, int idx, void *data)
int cpu_map__build_map(struct cpu_map *cpus, struct cpu_map **res, int(*f)(struct cpu_map *map, int cpu, void *data), void *data)
int cpu_map__get_core_id(int cpu)
struct cpu_map * cpu_map__empty_new(int nr)
struct cpu_map * cpu_map__new(const char *cpu_list)
int cpu_map__build_socket_map(struct cpu_map *cpus, struct cpu_map **sockp)
int cpu__setup_cpunode_map(void)
int cpu_map__get_socket(struct cpu_map *map, int idx, void *data __maybe_unused)
static int cmp_ids(const void *a, const void *b)
static char hex_char(unsigned char val)
static struct cpu_map * cpu_map__from_entries(struct cpu_map_entries *cpus)
struct cpu_map * cpu_map__get(struct cpu_map *map)
static struct cpu_map * cpu_map__trim_new(int nr_cpus, int *tmp_cpus)
void static void * zalloc(size_t size)