diff options
| author | Arnaldo Carvalho de Melo <[email protected]> | 2015-09-10 15:20:14 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2015-09-14 15:50:26 +0000 |
| commit | 09f6acf2eacad3a0f9a4b9f77e0b021f0cb45780 (patch) | |
| tree | 20a9c7c055687daac544429dffb932629609dfcb /tools/lib/api/Build | |
| parent | tools lib api fs: Introduce sysfs__read_{int,ull}() (diff) | |
| download | kernel-09f6acf2eacad3a0f9a4b9f77e0b021f0cb45780.tar.gz kernel-09f6acf2eacad3a0f9a4b9f77e0b021f0cb45780.zip | |
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 <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/lib/api/Build')
| -rw-r--r-- | tools/lib/api/Build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lib/api/Build b/tools/lib/api/Build index 3653965cf481..e8b8a23b9bf4 100644 --- a/tools/lib/api/Build +++ b/tools/lib/api/Build @@ -1,2 +1,3 @@ libapi-y += fd/ libapi-y += fs/ +libapi-y += cpu.o |
