The enable_ino64 module parameter controlled whether NFS presented 64-bit or XOR-folded 32-bit inode numbers to userspace. With i_ino now being u64 and the compat folding function removed, this parameter has no remaining consumers.
Remove the parameter, the NFS_64_BIT_INODE_NUMBERS_ENABLED macro, and the enable_ino64 variable. Signed-off-by: Jeff Layton <[email protected]> --- fs/nfs/inode.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 1a7d7bafbb623ab603b8c517628343463277e096..8743f3bd96a7b5915ae892abe731f159a7055d40 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -57,11 +57,6 @@ #define NFSDBG_FACILITY NFSDBG_VFS -#define NFS_64_BIT_INODE_NUMBERS_ENABLED 1 - -/* Default is to see 64-bit inode numbers */ -static bool enable_ino64 = NFS_64_BIT_INODE_NUMBERS_ENABLED; - static int nfs_update_inode(struct inode *, struct nfs_fattr *); static struct kmem_cache * nfs_inode_cachep; @@ -2770,7 +2765,6 @@ static void __exit exit_nfs_fs(void) MODULE_AUTHOR("Olaf Kirch <[email protected]>"); MODULE_DESCRIPTION("NFS client support"); MODULE_LICENSE("GPL"); -module_param(enable_ino64, bool, 0644); module_init(init_nfs_fs) module_exit(exit_nfs_fs) -- 2.53.0
