From: Abhishek Goel Date: Tue, 7 Nov 2017 09:47:55 +0000 (+0530) Subject: cpupowerutils: bench - Fix cpu online check X-Git-Tag: v4.19~2062^2^2^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53d1cd6b125fb9d69303516a1179ebc3b72f797a;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Shuah Khan --- diff --git a/tools/power/cpupower/bench/system.c b/tools/power/cpupower/bench/system.c index c25a74a..2bb3eef 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;