From: Ethan Nelson-Moore Date: Tue, 9 Jun 2026 02:56:04 +0000 (-0700) Subject: NFS: correct CONFIG_NFS_V4 macro name in #endif comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cf5e4fc36d3a77467dd0d02a45371ea4350410b;p=thirdparty%2Flinux.git NFS: correct CONFIG_NFS_V4 macro name in #endif comment A comment in fs/nfs/dir.c incorrectly refers to CONFIG_NFSV4 instead of CONFIG_NFS_V4. Correct it. Discovered while searching for CONFIG_* symbols referenced in code but not defined in any Kconfig file. Signed-off-by: Ethan Nelson-Moore Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 659e39b1562bc..fb8633fa2ac4e 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -2299,7 +2299,7 @@ full_reval: return nfs_do_lookup_revalidate(dir, name, dentry, flags); } -#endif /* CONFIG_NFSV4 */ +#endif /* CONFIG_NFS_V4 */ int nfs_atomic_open_v23(struct inode *dir, struct dentry *dentry, struct file *file, unsigned int open_flags,