]> git.openstreetmap.org Git - chef.git/commitdiff
Make the energy_perf_bias configuration actually work
authorTom Hughes <tom@compton.nu>
Sun, 10 Jul 2022 10:32:13 +0000 (11:32 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 10 Jul 2022 10:33:36 +0000 (11:33 +0100)
cookbooks/hardware/attributes/default.rb

index ff33c73b5340d1a23c0cfcb840e3f4247168abde..d2c1b36bd22c90d244dd9876ea7a934da104b035 100644 (file)
@@ -58,7 +58,12 @@ if File.exist?("/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor") &&
   default[:sysfs][:cpufreq_ondemand][:parameters][:"devices/system/cpu/cpufreq/ondemand/sampling_down_factor"] = "100"
 end
 
-if File.exist?("/sys/devices/system/cpu/cpu0/power/energy_perf_bias")
+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][:parameters][:"devices/system/cpu/cpu*/power/energy_perf_bias"] = "0"
+
+  energy_perf_bias.sort.each do |path|
+    default[:sysfs][:cpu_power_energy_perf_bias][:parameters][path.sub(%r{^/sys/}, "")] = "0"
+  end
 end