diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-09-10 11:20:14 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-09-14 11:50:26 -0400 |
commit | 09f6acf2eacad3a0f9a4b9f77e0b021f0cb45780 (patch) | |
tree | 20a9c7c055687daac544429dffb932629609dfcb /tools/lib/api/cpu.c | |
parent | 2d729f6a8ac3edbf68de7239fab96c9736946af5 (diff) |
tools lib api cpu: Introduce cpu.[ch] to obtain cpu related information
E.g.:
$ ./cpu__get_max_freq
3200000
It does that, as Kan's patch does, by looking at these files:
$ cat /sys/devices/system/cpu/online
0-3
$ ./sysfs__read_ull
devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq
/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq=3200000
$
I.e. find out the first online CPU, then read its cpufreq info.
But do it in tools/lib/api/, so that other tools/ living code can use
it, not just perf.
Based-on-a-patch-by: Kan Liang <kan.liang@intel.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-915v4cvxqplaub8qco66b9mv@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/api/cpu.c')
-rw-r--r-- | tools/lib/api/cpu.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/lib/api/cpu.c b/tools/lib/api/cpu.c new file mode 100644 index 000000000000..8c6489356e3a --- /dev/null +++ b/tools/lib/api/cpu.c | |||
@@ -0,0 +1,18 @@ | |||
1 | #include <stdio.h> | ||
2 | |||
3 | #include "cpu.h" | ||
4 | #include "fs/fs.h" | ||
5 | |||
6 | int cpu__get_max_freq(unsigned long long *freq) | ||
7 | { | ||
8 | char entry[PATH_MAX]; | ||
9 | int cpu; | ||
10 | |||
11 | if (sysfs__read_int("devices/system/cpu/online", &cpu) < 0) | ||
12 | return -1; | ||
13 | |||
14 | snprintf(entry, sizeof(entry), | ||
15 | "devices/system/cpu/cpu%d/cpufreq/cpuinfo_max_freq", cpu); | ||
16 | |||
17 | return sysfs__read_ull(entry, freq); | ||
18 | } | ||