inotify: fix race
[linux-2.6.22.y-op.git] / net / appletalk / sysctl_net_atalk.c
blob7df1778e221a6f9ab3782789ffeb51af61ceb165
1 /*
2 * sysctl_net_atalk.c: sysctl interface to net AppleTalk subsystem.
4 * Begun April 1, 1996, Mike Shaver.
5 * Added /proc/sys/net/atalk directory entry (empty =) ). [MS]
6 * Dynamic registration, added aarp entries. (5/30/97 Chris Horn)
7 */
9 #include <linux/sysctl.h>
10 #include <net/sock.h>
11 #include <linux/atalk.h>
13 static struct ctl_table atalk_table[] = {
15 .ctl_name = NET_ATALK_AARP_EXPIRY_TIME,
16 .procname = "aarp-expiry-time",
17 .data = &sysctl_aarp_expiry_time,
18 .maxlen = sizeof(int),
19 .mode = 0644,
20 .proc_handler = &proc_dointvec_jiffies,
21 .strategy = &sysctl_jiffies,
24 .ctl_name = NET_ATALK_AARP_TICK_TIME,
25 .procname = "aarp-tick-time",
26 .data = &sysctl_aarp_tick_time,
27 .maxlen = sizeof(int),
28 .mode = 0644,
29 .proc_handler = &proc_dointvec_jiffies,
30 .strategy = &sysctl_jiffies,
33 .ctl_name = NET_ATALK_AARP_RETRANSMIT_LIMIT,
34 .procname = "aarp-retransmit-limit",
35 .data = &sysctl_aarp_retransmit_limit,
36 .maxlen = sizeof(int),
37 .mode = 0644,
38 .proc_handler = &proc_dointvec,
41 .ctl_name = NET_ATALK_AARP_RESOLVE_TIME,
42 .procname = "aarp-resolve-time",
43 .data = &sysctl_aarp_resolve_time,
44 .maxlen = sizeof(int),
45 .mode = 0644,
46 .proc_handler = &proc_dointvec_jiffies,
47 .strategy = &sysctl_jiffies,
49 { 0 },
52 static struct ctl_table atalk_dir_table[] = {
54 .ctl_name = NET_ATALK,
55 .procname = "appletalk",
56 .mode = 0555,
57 .child = atalk_table,
59 { 0 },
62 static struct ctl_table atalk_root_table[] = {
64 .ctl_name = CTL_NET,
65 .procname = "net",
66 .mode = 0555,
67 .child = atalk_dir_table,
69 { 0 },
72 static struct ctl_table_header *atalk_table_header;
74 void atalk_register_sysctl(void)
76 atalk_table_header = register_sysctl_table(atalk_root_table);
79 void atalk_unregister_sysctl(void)
81 unregister_sysctl_table(atalk_table_header);