diff options
Diffstat (limited to 'net/ipv4/ip_fragment.c')
| -rw-r--r-- | net/ipv4/ip_fragment.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c index 1a3c37b5e93..6659ac000ee 100644 --- a/net/ipv4/ip_fragment.c +++ b/net/ipv4/ip_fragment.c @@ -607,7 +607,7 @@ static struct ctl_table ip4_frags_ns_ctl_table[] = {  		.data		= &init_net.ipv4.frags.high_thresh,  		.maxlen		= sizeof(int),  		.mode		= 0644, -		.proc_handler	= &proc_dointvec +		.proc_handler	= proc_dointvec  	},  	{  		.ctl_name	= NET_IPV4_IPFRAG_LOW_THRESH, @@ -615,7 +615,7 @@ static struct ctl_table ip4_frags_ns_ctl_table[] = {  		.data		= &init_net.ipv4.frags.low_thresh,  		.maxlen		= sizeof(int),  		.mode		= 0644, -		.proc_handler	= &proc_dointvec +		.proc_handler	= proc_dointvec  	},  	{  		.ctl_name	= NET_IPV4_IPFRAG_TIME, @@ -623,8 +623,8 @@ static struct ctl_table ip4_frags_ns_ctl_table[] = {  		.data		= &init_net.ipv4.frags.timeout,  		.maxlen		= sizeof(int),  		.mode		= 0644, -		.proc_handler	= &proc_dointvec_jiffies, -		.strategy	= &sysctl_jiffies +		.proc_handler	= proc_dointvec_jiffies, +		.strategy	= sysctl_jiffies  	},  	{ }  }; @@ -636,15 +636,15 @@ static struct ctl_table ip4_frags_ctl_table[] = {  		.data		= &ip4_frags.secret_interval,  		.maxlen		= sizeof(int),  		.mode		= 0644, -		.proc_handler	= &proc_dointvec_jiffies, -		.strategy	= &sysctl_jiffies +		.proc_handler	= proc_dointvec_jiffies, +		.strategy	= sysctl_jiffies  	},  	{  		.procname	= "ipfrag_max_dist",  		.data		= &sysctl_ipfrag_max_dist,  		.maxlen		= sizeof(int),  		.mode		= 0644, -		.proc_handler	= &proc_dointvec_minmax, +		.proc_handler	= proc_dointvec_minmax,  		.extra1		= &zero  	},  	{ }  |