First, always prefer schedutil for balanced/powersave. On platforms
where this governor is available, this enables Energy-Aware-Scheduling
which offers the best power efficiency and performance combination.
There is absolutely no reason to use another governor by default in the
"balanced" profile on these systems, in particular.
Second, swap around "conservative" and "ondemand". "conservative" is
supposed to be lower power and higher latency. The commit that made this
change [1] tested on a single server platform (10 years ago), but came
to the wrong conclusion. Dividing the throughput by power numbers of
that commit, "conservative" did in fact provide better performance/watt,
which is the intent of lower-power modes. The fact that it also
happened to provide better overall performance than "ondemand" is
probably an artifact of suboptimal power-management behavior or a
flawed test.
[1] b2897d9c1c
Signed-off-by: Hector Martin <marcan@marcan.st>
45 lines
678 B
Text
45 lines
678 B
Text
#
|
|
# tuned configuration
|
|
#
|
|
|
|
[main]
|
|
summary=Optimize for low power consumption
|
|
|
|
[cpu]
|
|
governor=schedutil|conservative|powersave
|
|
energy_perf_bias=powersave|power
|
|
energy_performance_preference=power
|
|
boost=0
|
|
|
|
[acpi]
|
|
platform_profile=low-power|quiet
|
|
|
|
[eeepc_she]
|
|
|
|
[vm]
|
|
|
|
[audio]
|
|
timeout=10
|
|
|
|
[video]
|
|
radeon_powersave=dpm-battery, auto
|
|
panel_power_savings=3
|
|
|
|
[disk]
|
|
# Comma separated list of devices, all devices if commented out.
|
|
# devices=sda
|
|
|
|
[net]
|
|
# Comma separated list of devices, all devices if commented out.
|
|
# devices=eth0
|
|
|
|
[scsi_host]
|
|
alpm=min_power
|
|
|
|
[sysctl]
|
|
vm.laptop_mode=5
|
|
vm.dirty_writeback_centisecs=1500
|
|
kernel.nmi_watchdog=0
|
|
|
|
[script]
|
|
script=${i:PROFILE_DIR}/script.sh
|