perf tools: Fix sparse CPU numbering related bugs
At present, the perf subcommands that do system-wide monitoring
(perf stat, perf record and perf top) don't work properly unless
the online cpus are numbered 0, 1, ..., N-1. These tools ask
for the number of online cpus with sysconf(_SC_NPROCESSORS_ONLN)
and then try to create events for cpus 0, 1, ..., N-1.
This creates problems for systems where the online cpus are
numbered sparsely. For example, a POWER6 system in
single-threaded mode (i.e. only running 1 hardware thread per
core) will have only even-numbered cpus online.
This fixes the problem by reading the /sys/devices/system/cpu/online
file to find out which cpus are online. The code that does that is in
tools/perf/util/cpumap.[ch], and consists of a read_cpu_map()
function that sets up a cpumap[] array and returns the number of
online cpus. If /sys/devices/system/cpu/online can't be read or
can't be parsed successfully, it falls back to using sysconf to
ask how many cpus are online and sets up an identity map in cpumap[].
The perf record, perf stat and perf top code then calls
read_cpu_map() in the system-wide monitoring case (instead of
sysconf) and uses cpumap[] to get the cpu numbers to pass to
perf_event_open.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Cc: Anton Blanchard <anton@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
LKML-Reference: <20100310093609.GA3959@brick.ozlabs.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2010-03-10 17:36:09 +08:00
|
|
|
#ifndef __PERF_CPUMAP_H
|
|
|
|
#define __PERF_CPUMAP_H
|
|
|
|
|
2012-01-20 00:07:23 +08:00
|
|
|
#include <stdio.h>
|
2012-09-26 23:41:14 +08:00
|
|
|
#include <stdbool.h>
|
2012-01-20 00:07:23 +08:00
|
|
|
|
2011-01-04 03:49:48 +08:00
|
|
|
struct cpu_map {
|
|
|
|
int nr;
|
|
|
|
int map[];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cpu_map *cpu_map__new(const char *cpu_list);
|
|
|
|
struct cpu_map *cpu_map__dummy_new(void);
|
2011-01-15 02:19:12 +08:00
|
|
|
void cpu_map__delete(struct cpu_map *map);
|
2012-09-10 15:53:50 +08:00
|
|
|
struct cpu_map *cpu_map__read(FILE *file);
|
2012-01-20 00:07:23 +08:00
|
|
|
size_t cpu_map__fprintf(struct cpu_map *map, FILE *fp);
|
|
|
|
|
2012-09-26 23:41:14 +08:00
|
|
|
static inline int cpu_map__nr(const struct cpu_map *map)
|
|
|
|
{
|
|
|
|
return map ? map->nr : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool cpu_map__all(const struct cpu_map *map)
|
|
|
|
{
|
|
|
|
return map ? map->map[0] == -1 : true;
|
|
|
|
}
|
|
|
|
|
perf tools: Fix sparse CPU numbering related bugs
At present, the perf subcommands that do system-wide monitoring
(perf stat, perf record and perf top) don't work properly unless
the online cpus are numbered 0, 1, ..., N-1. These tools ask
for the number of online cpus with sysconf(_SC_NPROCESSORS_ONLN)
and then try to create events for cpus 0, 1, ..., N-1.
This creates problems for systems where the online cpus are
numbered sparsely. For example, a POWER6 system in
single-threaded mode (i.e. only running 1 hardware thread per
core) will have only even-numbered cpus online.
This fixes the problem by reading the /sys/devices/system/cpu/online
file to find out which cpus are online. The code that does that is in
tools/perf/util/cpumap.[ch], and consists of a read_cpu_map()
function that sets up a cpumap[] array and returns the number of
online cpus. If /sys/devices/system/cpu/online can't be read or
can't be parsed successfully, it falls back to using sysconf to
ask how many cpus are online and sets up an identity map in cpumap[].
The perf record, perf stat and perf top code then calls
read_cpu_map() in the system-wide monitoring case (instead of
sysconf) and uses cpumap[] to get the cpu numbers to pass to
perf_event_open.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Cc: Anton Blanchard <anton@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
LKML-Reference: <20100310093609.GA3959@brick.ozlabs.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2010-03-10 17:36:09 +08:00
|
|
|
#endif /* __PERF_CPUMAP_H */
|