about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorDominik Xaver Hörl <hoe.dom@gmx.de>2022-12-09 22:35:51 +0100
committerDominik Xaver Hörl <hoe.dom@gmx.de>2022-12-19 15:18:05 +0100
commit95c27f5975e241b9359d886c48c420f384792450 (patch)
tree8071f9bbb96f2bec7c119b531c56f94d6bf7a78f /pkgs/os-specific
parent64866119846ef9c03739cbd77451f4623d1e695d (diff)
linux: enable Multi-Gen LRU by default
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/common-config.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index f65fd2da81bca..2fee060932ede 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -940,6 +940,7 @@ let
       SCHED_CORE = whenAtLeast "5.14" yes;
 
       LRU_GEN = whenAtLeast "6.1"  yes;
+      LRU_GEN_ENABLED =  whenAtLeast "6.1" yes;
 
       FSL_MC_UAPI_SUPPORT = mkIf (stdenv.hostPlatform.system == "aarch64-linux") (whenAtLeast "5.12" yes);