aboutsummaryrefslogtreecommitdiffstats
path: root/tools/power/cpupower
diff options
context:
space:
mode:
authorAbhishek Goel <huntbag@linux.vnet.ibm.com>2017-11-07 15:17:55 +0530
committerShuah Khan <shuahkh@osg.samsung.com>2017-11-15 08:37:35 -0700
commit53d1cd6b125fb9d69303516a1179ebc3b72f797a (patch)
tree9721c61a3a20ba73b625786dfa9b82aec968fc1d /tools/power/cpupower
parenttools/power/cpupower: add libcpupower.so.0.0.1 to .gitignore (diff)
downloadlinux-dev-53d1cd6b125fb9d69303516a1179ebc3b72f797a.tar.xz
linux-dev-53d1cd6b125fb9d69303516a1179ebc3b72f797a.zip
cpupowerutils: bench - Fix cpu online check
cpupower_is_cpu_online was incorrectly checking for 0. This patch fixes this by checking for 1 when the cpu is online. Signed-off-by: Abhishek Goel <huntbag@linux.vnet.ibm.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/power/cpupower')
-rw-r--r--tools/power/cpupower/bench/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/cpupower/bench/system.c b/tools/power/cpupower/bench/system.c
index c25a74ae51ba..2bb3eef7d5c1 100644
--- a/tools/power/cpupower/bench/system.c
+++ b/tools/power/cpupower/bench/system.c
@@ -61,7 +61,7 @@ int set_cpufreq_governor(char *governor, unsigned int cpu)
dprintf("set %s as cpufreq governor\n", governor);
- if (cpupower_is_cpu_online(cpu) != 0) {
+ if (cpupower_is_cpu_online(cpu) != 1) {
perror("cpufreq_cpu_exists");
fprintf(stderr, "error: cpu %u does not exist\n", cpu);
return -1;