@@ -16,7 +16,7 @@
int cpufreq_has_boost_support(unsigned int cpu, int *support, int *active,
int *states)
{
- int ret;
+ int ret = 0;
unsigned long long val;
*support = *active = *states = 0;
@@ -30,18 +30,21 @@ int cpufreq_has_boost_support(unsigned int cpu, int *support, int *active,
*/
if (cpupower_cpu_info.caps & CPUPOWER_CAP_AMD_CPB_MSR) {
- if (!read_msr(cpu, MSR_AMD_HWCR, &val)) {
+ /*
+ * no permission to access /dev/cpu/%d/msr, return -1 immediately,
+ * and should not follow the original logic to return 0
+ */
+ ret = read_msr(cpu, MSR_AMD_HWCR, &val);
+ if (!ret) {
if (!(val & CPUPOWER_AMD_CPBDIS))
*active = 1;
}
} else {
ret = amd_pci_get_num_boost_states(active, states);
- if (ret)
- return ret;
}
} else if (cpupower_cpu_info.caps & CPUPOWER_CAP_INTEL_IDA)
*support = *active = 1;
- return 0;
+ return ret;
}
int cpupower_intel_get_perf_bias(unsigned int cpu)