📖 ~1 min read
Table of contents
Symptom & Impact
CPU stays in powersave despite governor change on CentOS Stream 10 disrupts services and slows incident response until the root cause is resolved.
Environment & Reproduction
cpupower reports performance governor but real frequency stays low due to intel_pstate driver caps.
cpupower frequency-info
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Root Cause Analysis
Misalignment between performance configuration and CentOS Stream 10 defaults causes the failure path described above.
Quick Triage
Confirm package state, service status, and recent changes before deeper diagnostics.
systemctl status
rpm -qa | grep -i
journalctl -p err -b --no-pager | tail -100
Step-by-Step Diagnosis
Capture detailed logs, configuration deltas, and runtime state to isolate the failing component.
turbostat --quiet sleep 10
dmesg | grep -i pstate
cat /sys/devices/system/cpu/intel_pstate/status

Solution – Primary Fix
Apply the targeted configuration change and restart the relevant services to restore expected behavior.
Still having issues? Our Managed IT Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo cpupower frequency-set -g performance
echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
sudo grubby --args='intel_pstate=active' --update-kernel=ALL
sudo reboot

Solution – Alternative Approaches
Pin frequency floor via tuned-adm latency-performance profile.
Verification & Acceptance Criteria
Validate the fix with deterministic checks and ensure no regressions in dependent services.
cpupower frequency-info -p
turbostat --quiet sleep 5
Rollback Plan
Revert configuration and restart services to return to the previous known-good state.
grubby --remove-args='intel_pstate=active' --update-kernel=ALL
reboot
Prevention & Hardening
Apply tuned profile in baseline and verify with turbostat.
Related Errors & Cross-Refs
Related: intel_pstate, governor, turbostat; see also adjacent topics in the CentOS Stream 10 common problems series.
Related tutorial: View the step-by-step tutorial for centos-stream-10.
View all centos-stream-10 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
CentOS Stream documentation, Red Hat upstream guides, and CentOS Stream 10 release notes covering this subsystem.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.