]> git.openstreetmap.org Git - chef.git/commitdiff
hardware: Change CPU energy_perf_bias performance -> balance-performance
authorGrant Slater <github@firefishy.com>
Wed, 15 Feb 2023 02:26:30 +0000 (02:26 +0000)
committerGrant Slater <github@firefishy.com>
Wed, 15 Feb 2023 02:26:30 +0000 (02:26 +0000)
Signed-off-by: Grant Slater <github@firefishy.com>
cookbooks/hardware/attributes/default.rb

index c9d003e5745b2ce1a4a698ae4c48a2f96914aa10..6f89a9c3455168dcffa383ffc49125c1c9eb90e3 100644 (file)
@@ -53,9 +53,9 @@ end
 energy_perf_bias = Dir.glob("/sys/devices/system/cpu/cpu*/power/energy_perf_bias")
 
 unless energy_perf_bias.empty?
-  default[:sysfs][:cpu_power_energy_perf_bias][:comment] = "Set CPU Energy-Performance Bias Preference to performance"
+  default[:sysfs][:cpu_power_energy_perf_bias][:comment] = "Set CPU Energy-Performance Bias Preference to balance-performance"
 
   energy_perf_bias.sort.each do |path|
-    default[:sysfs][:cpu_power_energy_perf_bias][:parameters][path.sub(%r{^/sys/}, "")] = "0"
+    default[:sysfs][:cpu_power_energy_perf_bias][:parameters][path.sub(%r{^/sys/}, "")] = "4"
   end
 end