https://bugzilla.kernel.org/show_bug.cgi?id=60839 --- Comment #6 from Sven Köhler <sven.koehler@xxxxxxxxx> --- Nope, the patch didn't help. Here's the bash-code I used to test: cmax=$(cat cpuinfo_max_freq) echo $cmax >scaling_max_freq bmax=$cmax while [ $bmax -ge $cmax ]; do bmax=$(cat bios_limit) smax=$(cat scaling_max_freq) echo $cmax >scaling_max_freq echo $bmax $smax done while true; do echo $(cat bios_limit) $(cat scaling_max_freq) sleep 0.5 done The output is like this: 2534000 2534000 2534000 2534000 2534000 2534000 2534000 2534000 2534000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1199000 1333000 1199000 1333000 1199000 1333000 1199000 1333000 1199000 1466000 1199000 1466000 1199000 As you can see, scaling_max_freq remains low. When the script is not running, scaling_max_freq increases along with bios_limit. -- You are receiving this mail because: You are the assignee for the bug.-- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html