linuxKernel.kernels.linux_lqx: change BBR implementation

Fixes #257024. Google has updated BBR upstream.
This commit is contained in:
the-furry-hubofeverything 2023-09-24 01:25:39 -07:00
parent e556540620
commit 919ccaec31

@ -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;