- the cpufreqd is running (started from init.d)
- the governors are loaded:
- Code: Select all
[root@piotr ~]# lsmod|grep cpufreq
cpufreq_ondemand 13943 0
cpufreq_conservative 13852 0
cpufreq_powersave 12618 0
acpi_cpufreq 19571 4
mperf 12667 1 acpi_cpufreq
processor 35779 1 acpi_cpufreq
Actual governor is set to "performance":
- Code: Select all
[root@piotr ~]# cpupower frequency-info
analyzing CPU 0:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0 1 2 3
CPUs which need to have their frequency coordinated by software: 0 1 2 3
maximum transition latency: 10.0 us.
hardware limits: 2.00 GHz - 2.33 GHz
available frequency steps: 2.33 GHz, 2.00 GHz
available cpufreq governors: ondemand, conservative, powersave, userspace, performance
current policy: frequency should be within 2.33 GHz and 2.33 GHz.
The governor "performance" may decide which speed to use
within this range.
current CPU frequency is 2.33 GHz (asserted by call to hardware).
boost state support:
Supported: no
Active: no
I want to change to "ondemand" but the error is raported:
- Code: Select all
[root@piotr ~]# /usr/bin/cpufreqd-set ondemand
No cpufreqd socket found
Whats is wrong? Any idea?