Now that sys_sysctl is a compatiblity wrapper around /proc/sys all sysctl strategy routines, and all ctl_name and strategy entries in the sysctl tables are unused, and can be revmoed. In addition neigh_sysctl_register has been modified to no longer take a strategy argument and it's callers have been modified not to pass one. Cc: "David Miller" <davem@davemloft.net> Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> Cc: netdev@vger.kernel.org Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * sysctl_net_atalk.c: sysctl interface to net AppleTalk subsystem.
 | 
						|
 *
 | 
						|
 * Begun April 1, 1996, Mike Shaver.
 | 
						|
 * Added /proc/sys/net/atalk directory entry (empty =) ). [MS]
 | 
						|
 * Dynamic registration, added aarp entries. (5/30/97 Chris Horn)
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/sysctl.h>
 | 
						|
#include <net/sock.h>
 | 
						|
#include <linux/atalk.h>
 | 
						|
 | 
						|
static struct ctl_table atalk_table[] = {
 | 
						|
	{
 | 
						|
		.procname	= "aarp-expiry-time",
 | 
						|
		.data		= &sysctl_aarp_expiry_time,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_jiffies,
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "aarp-tick-time",
 | 
						|
		.data		= &sysctl_aarp_tick_time,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_jiffies,
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "aarp-retransmit-limit",
 | 
						|
		.data		= &sysctl_aarp_retransmit_limit,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec,
 | 
						|
	},
 | 
						|
	{
 | 
						|
		.procname	= "aarp-resolve-time",
 | 
						|
		.data		= &sysctl_aarp_resolve_time,
 | 
						|
		.maxlen		= sizeof(int),
 | 
						|
		.mode		= 0644,
 | 
						|
		.proc_handler	= proc_dointvec_jiffies,
 | 
						|
	},
 | 
						|
	{ },
 | 
						|
};
 | 
						|
 | 
						|
static struct ctl_path atalk_path[] = {
 | 
						|
	{ .procname = "net", },
 | 
						|
	{ .procname = "appletalk", },
 | 
						|
	{ }
 | 
						|
};
 | 
						|
 | 
						|
static struct ctl_table_header *atalk_table_header;
 | 
						|
 | 
						|
void atalk_register_sysctl(void)
 | 
						|
{
 | 
						|
	atalk_table_header = register_sysctl_paths(atalk_path, atalk_table);
 | 
						|
}
 | 
						|
 | 
						|
void atalk_unregister_sysctl(void)
 | 
						|
{
 | 
						|
	unregister_sysctl_table(atalk_table_header);
 | 
						|
}
 |