From e74a4b1527eecdd518dc2dfe4d13cfb203f0de4d Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 8 Mar 2024 10:42:02 +0300 Subject: [PATCH] kernel/common-config: disable NFSD_V2_ACL on 6.1 Upstream disabled NFSD_V2 entirely, so disable this also. --- pkgs/os-specific/linux/kernel/common-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 6e530b3acd9d..fb59bfecaa01 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -500,7 +500,7 @@ let F2FS_FS_COMPRESSION = whenAtLeast "5.6" yes; UDF_FS = module; - NFSD_V2_ACL = whenOlder "6.2" yes; + NFSD_V2_ACL = whenOlder "6.1" yes; NFSD_V3 = whenOlder "5.18" yes; NFSD_V3_ACL = yes; NFSD_V4 = yes;