summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/zen-kernels.nix
diff options
context:
space:
mode:
authorthe-furry-hubofeverything <53921912+the-furry-hubofeverything@users.noreply.github.com>2023-09-24 01:25:39 -0700
committerthe-furry-hubofeverything <53921912+the-furry-hubofeverything@users.noreply.github.com>2023-09-24 01:25:39 -0700
commit919ccaec317378d0426299cff71a9f44762d557a (patch)
tree74d32692d7bd04b81f4767d797fcdab15783933e /pkgs/os-specific/linux/kernel/zen-kernels.nix
parente556540620ebf01df3cc7a117bc72726ab9cae28 (diff)
downloadnixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar.gz
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar.bz2
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar.lz
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar.xz
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.tar.zst
nixpkgs-919ccaec317378d0426299cff71a9f44762d557a.zip
linuxKernel.kernels.linux_lqx: change BBR implementation
Fixes #257024. Google has updated BBR upstream.
Diffstat (limited to 'pkgs/os-specific/linux/kernel/zen-kernels.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/zen-kernels.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix
index 0d73b00d120..363cf6dee11 100644
--- a/pkgs/os-specific/linux/kernel/zen-kernels.nix
+++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix
@@ -74,10 +74,10 @@ let
       HZ = freeform "1000";
       HZ_1000 = yes;
     } // lib.optionalAttrs (isLqx) {
-      # Google's BBRv2 TCP congestion Control
-      TCP_CONG_BBR2 = yes;
-      DEFAULT_BBR2 = yes;
-      DEFAULT_TCP_CONG = freeform "bbr2";
+      # Google's BBRv3 TCP congestion Control
+      TCP_CONG_BBR = yes;
+      DEFAULT_BBR = yes;
+      DEFAULT_TCP_CONG = freeform "bbr";
 
       # PDS Process Scheduler
       SCHED_ALT = yes;