Rename IntelUncorePlugin to UncorePlugin
Rename the plugin name as so can be used as placeholder for Uncore settings for other CPU vendors. Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
This commit is contained in:
parent
c927e8bdf8
commit
81580ce7d0
1 changed files with 7 additions and 4 deletions
|
|
@ -14,19 +14,22 @@ SYSFS_DIR = "/sys/devices/system/cpu/intel_uncore_frequency/"
|
|||
IS_MIN = 0
|
||||
IS_MAX = 1
|
||||
|
||||
class IntelUncorePlugin(hotplug.Plugin):
|
||||
class UncorePlugin(hotplug.Plugin):
|
||||
"""
|
||||
`intel_uncore`::
|
||||
`uncore`::
|
||||
|
||||
`max_freq_khz, min_freq_khz`:::
|
||||
Limit the maximum and minumum uncore frequency.
|
||||
|
||||
Those options are Intel specific and correspond directly to `sysfs` files
|
||||
exposed by Intel uncore frequency driver.
|
||||
====
|
||||
----
|
||||
[intel_uncore]
|
||||
[uncore]
|
||||
max_freq_khz=4000000
|
||||
----
|
||||
Using this options *TuneD* will limit maximum frequency of all uncore units
|
||||
in the system to 4 GHz
|
||||
on the Intel system to 4 GHz.
|
||||
====
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue