projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69b6f8a
)
cpupowerutils: bench - Fix cpu online check
author
Abhishek Goel
<huntbag@linux.vnet.ibm.com>
Tue, 7 Nov 2017 09:47:55 +0000
(15:17 +0530)
committer
Shuah Khan
<shuahkh@osg.samsung.com>
Wed, 15 Nov 2017 15:37:35 +0000
(08:37 -0700)
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>
tools/power/cpupower/bench/system.c
patch
|
blob
|
history
diff --git
a/tools/power/cpupower/bench/system.c
b/tools/power/cpupower/bench/system.c
index
c25a74a
..
2bb3eef
100644
(file)
--- 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;