diff options
Diffstat (limited to 'fs/nfs/sysctl.c')
| -rw-r--r-- | fs/nfs/sysctl.c | 34 | 
1 files changed, 3 insertions, 31 deletions
diff --git a/fs/nfs/sysctl.c b/fs/nfs/sysctl.c index 978aaeb8a09..bb6ed810fa6 100644 --- a/fs/nfs/sysctl.c +++ b/fs/nfs/sysctl.c @@ -9,39 +9,11 @@  #include <linux/fs.h>  #include <linux/sysctl.h>  #include <linux/module.h> -#include <linux/nfs4.h> -#include <linux/nfs_idmap.h>  #include <linux/nfs_fs.h> -#include "callback.h" - -#ifdef CONFIG_NFS_V4 -static const int nfs_set_port_min = 0; -static const int nfs_set_port_max = 65535; -#endif  static struct ctl_table_header *nfs_callback_sysctl_table; -static ctl_table nfs_cb_sysctls[] = { -#ifdef CONFIG_NFS_V4 -	{ -		.procname = "nfs_callback_tcpport", -		.data = &nfs_callback_set_tcpport, -		.maxlen = sizeof(int), -		.mode = 0644, -		.proc_handler = proc_dointvec_minmax, -		.extra1 = (int *)&nfs_set_port_min, -		.extra2 = (int *)&nfs_set_port_max, -	}, -#ifndef CONFIG_NFS_USE_NEW_IDMAPPER -	{ -		.procname = "idmap_cache_timeout", -		.data = &nfs_idmap_cache_timeout, -		.maxlen = sizeof(int), -		.mode = 0644, -		.proc_handler = proc_dointvec_jiffies, -	}, -#endif /* CONFIG_NFS_USE_NEW_IDMAPPER */ -#endif +static struct ctl_table nfs_cb_sysctls[] = {  	{  		.procname	= "nfs_mountpoint_timeout",  		.data		= &nfs_mountpoint_expiry_timeout, @@ -59,7 +31,7 @@ static ctl_table nfs_cb_sysctls[] = {  	{ }  }; -static ctl_table nfs_cb_sysctl_dir[] = { +static struct ctl_table nfs_cb_sysctl_dir[] = {  	{  		.procname = "nfs",  		.mode = 0555, @@ -68,7 +40,7 @@ static ctl_table nfs_cb_sysctl_dir[] = {  	{ }  }; -static ctl_table nfs_cb_sysctl_root[] = { +static struct ctl_table nfs_cb_sysctl_root[] = {  	{  		.procname = "fs",  		.mode = 0555,  | 
