Linux 5.1.15
[linux/fpc-iii.git] / tools / perf / util / cputopo.h
blob47a97e71acdff059174a97582c0f7ee889195763
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CPUTOPO_H
3 #define __PERF_CPUTOPO_H
5 #include <linux/types.h>
6 #include "env.h"
8 struct cpu_topology {
9 u32 core_sib;
10 u32 thread_sib;
11 char **core_siblings;
12 char **thread_siblings;
15 struct numa_topology_node {
16 char *cpus;
17 u32 node;
18 u64 mem_total;
19 u64 mem_free;
22 struct numa_topology {
23 u32 nr;
24 struct numa_topology_node nodes[0];
27 struct cpu_topology *cpu_topology__new(void);
28 void cpu_topology__delete(struct cpu_topology *tp);
30 struct numa_topology *numa_topology__new(void);
31 void numa_topology__delete(struct numa_topology *tp);
33 #endif /* __PERF_CPUTOPO_H */