Bug 817328

Summary: How to disable cpu throttling with kernel tools?
Product: [Fedora] Fedora Reporter: Simon Lewis <simon.lewis>
Component: kernelAssignee: Kernel Maintainer List <kernel-maint>
Status: CLOSED WORKSFORME QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: unspecified    
Version: 16CC: extras-orphan, gansalmon, itamar, jonathan, kernel-maint, madhu.chinakonda, notting
Target Milestone: ---   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-05-07 19:37:56 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Simon Lewis 2012-04-29 06:55:44 UTC
The package cpufrequtils has been replaced with kernel-tools.

For one application I use it is recommended to turn off CPU frequency throttling, quote:

"  you will probably want to turn off CPU frequency throttling when
   pianoteq is running, especially if you CPU is not very powerful. You
   can use the "cpufreq-info" command-line program to checks its current
   settings. CPU throttling can be disabled by the command:

     sudo cpufreq-set -c 0 -g performance (disable on the first cpu core)
     sudo cpufreq-set -c 1 -g performance (disable on the second core)
     ... (repeat for each CPU core)"

What would be the command using the new kernel tools, or is it possible to add a flag to the boot.conf?

Comment 1 Dave Jones 2012-05-07 19:37:56 UTC
sudo cpupower frequency-set -g performance

will set the governor for all cores.