link_power_policy_management default to max_performance

The kernel default for `link_power_management_policy` is `"max_performance"`.
This commit:
f169f60575
set the NixOS default to `"min_performance"`.

This issue (https://github.com/NixOS/nixpkgs/issues/11276) details my long
journey to discover this after several file system failures incorrectly
attributed to `TRIM` and `NCQ` settings.

I think we should use the kernel default of `"max_performance"` to assure
the best experience for new users with SSDs and to conform to the defaults of
the kernel and other distros.
This commit is contained in:
aaron levin 2015-12-16 23:26:07 +01:00
parent fd45c7b82b
commit 3b3be7a74b

View File

@ -71,7 +71,7 @@ in
# FIXME: Implement powersave governor for sandy bridge or later Intel CPUs
powerManagement.cpuFreqGovernor = mkDefault "ondemand";
powerManagement.scsiLinkPolicy = mkDefault "min_power";
powerManagement.scsiLinkPolicy = mkDefault "max_performance";
systemd.targets.post-resume = {
description = "Post-Resume Actions";