From e293a082f8abbdb60a848dd6cd4335feeef0687b Mon Sep 17 00:00:00 2001 From: Scott Mayhew Date: Mon, 23 Sep 2024 16:32:54 -0400 Subject: [PATCH] NFS: Don't enable NFS v2 by default JIRA: https://issues.redhat.com/browse/RHEL-59704 commit d1404e46ae4688c74e7504195f4fe253bcce1522 Author: Anna Schumaker Date: Thu Apr 25 16:34:40 2024 -0400 NFS: Don't enable NFS v2 by default This came up during one of the Bake-a-thon discussions. NFS v2 support was dropped from nfs-utils/mount.nfs in December 2021. Let's turn it off by default in the kernel too, since this means there isn't a way to mount and test it. Signed-off-by: Anna Schumaker Reviewed-by: Jeffrey Layton Signed-off-by: Trond Myklebust Signed-off-by: Scott Mayhew --- fs/nfs/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/nfs/Kconfig b/fs/nfs/Kconfig index 01ac733a6320..8a01228b9fdb 100644 --- a/fs/nfs/Kconfig +++ b/fs/nfs/Kconfig @@ -33,12 +33,12 @@ config NFS_FS config NFS_V2 tristate "NFS client support for NFS version 2" depends on NFS_FS - default y + default n help This option enables support for version 2 of the NFS protocol (RFC 1094) in the kernel's NFS client. - If unsure, say Y. + If unsure, say N. config NFS_V3 tristate "NFS client support for NFS version 3"