linuxKernel.kernels.linux_zen: remove deprecated config opts re: Z3FOLD

This commit is contained in:
Daniel Fahey 2024-10-23 13:05:11 +01:00
parent d0037e9629
commit ff63c60b99

View File

@ -83,8 +83,6 @@ let
HZ = freeform "1000"; HZ = freeform "1000";
HZ_1000 = yes; HZ_1000 = yes;
# Alternative zpool for zswap
Z3FOLD = yes;
} // lib.optionalAttrs (isLqx) { } // lib.optionalAttrs (isLqx) {
# Google's BBRv3 TCP congestion Control # Google's BBRv3 TCP congestion Control
TCP_CONG_BBR = yes; TCP_CONG_BBR = yes;
@ -101,7 +99,6 @@ let
# Swap storage is compressed with LZ4 using zswap # Swap storage is compressed with LZ4 using zswap
ZSWAP_COMPRESSOR_DEFAULT_LZ4 = lib.mkOptionDefault yes; ZSWAP_COMPRESSOR_DEFAULT_LZ4 = lib.mkOptionDefault yes;
ZSWAP_COMPRESSOR_DEFAULT_ZSTD = lib.mkDefault no; ZSWAP_COMPRESSOR_DEFAULT_ZSTD = lib.mkDefault no;
ZSWAP_ZPOOL_DEFAULT_Z3FOLD = yes;
# Fix error: unused option: XXX. # Fix error: unused option: XXX.
CFS_BANDWIDTH = lib.mkForce (option no); CFS_BANDWIDTH = lib.mkForce (option no);