Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / llc / sysctl_net_llc.c
blob5bef1dcf18e3c1ec060dcdb4f4047376d2a0f417
1 /*
2 * sysctl_net_llc.c: sysctl interface to LLC net subsystem.
4 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
5 */
7 #include <linux/mm.h>
8 #include <linux/init.h>
9 #include <linux/sysctl.h>
10 #include <net/llc.h>
12 #ifndef CONFIG_SYSCTL
13 #error This file should not be compiled without CONFIG_SYSCTL defined
14 #endif
16 static struct ctl_table llc2_timeout_table[] = {
18 .ctl_name = NET_LLC2_ACK_TIMEOUT,
19 .procname = "ack",
20 .data = &sysctl_llc2_ack_timeout,
21 .maxlen = sizeof(long),
22 .mode = 0644,
23 .proc_handler = &proc_dointvec_jiffies,
24 .strategy = &sysctl_jiffies,
27 .ctl_name = NET_LLC2_BUSY_TIMEOUT,
28 .procname = "busy",
29 .data = &sysctl_llc2_busy_timeout,
30 .maxlen = sizeof(long),
31 .mode = 0644,
32 .proc_handler = &proc_dointvec_jiffies,
33 .strategy = &sysctl_jiffies,
36 .ctl_name = NET_LLC2_P_TIMEOUT,
37 .procname = "p",
38 .data = &sysctl_llc2_p_timeout,
39 .maxlen = sizeof(long),
40 .mode = 0644,
41 .proc_handler = &proc_dointvec_jiffies,
42 .strategy = &sysctl_jiffies,
45 .ctl_name = NET_LLC2_REJ_TIMEOUT,
46 .procname = "rej",
47 .data = &sysctl_llc2_rej_timeout,
48 .maxlen = sizeof(long),
49 .mode = 0644,
50 .proc_handler = &proc_dointvec_jiffies,
51 .strategy = &sysctl_jiffies,
53 { 0 },
56 static struct ctl_table llc_station_table[] = {
58 .ctl_name = NET_LLC_STATION_ACK_TIMEOUT,
59 .procname = "ack_timeout",
60 .data = &sysctl_llc_station_ack_timeout,
61 .maxlen = sizeof(long),
62 .mode = 0644,
63 .proc_handler = &proc_dointvec_jiffies,
64 .strategy = &sysctl_jiffies,
66 { 0 },
69 static struct ctl_table llc2_dir_timeout_table[] = {
71 .ctl_name = NET_LLC2,
72 .procname = "timeout",
73 .mode = 0555,
74 .child = llc2_timeout_table,
76 { 0 },
79 static struct ctl_table llc_table[] = {
81 .ctl_name = NET_LLC2,
82 .procname = "llc2",
83 .mode = 0555,
84 .child = llc2_dir_timeout_table,
87 .ctl_name = NET_LLC_STATION,
88 .procname = "station",
89 .mode = 0555,
90 .child = llc_station_table,
92 { 0 },
95 static struct ctl_path llc_path[] = {
96 { .procname = "net", .ctl_name = CTL_NET, },
97 { .procname = "llc", .ctl_name = NET_LLC, },
98 { }
101 static struct ctl_table_header *llc_table_header;
103 int __init llc_sysctl_init(void)
105 llc_table_header = register_sysctl_paths(llc_path, llc_table);
107 return llc_table_header ? 0 : -ENOMEM;
110 void llc_sysctl_exit(void)
112 if (llc_table_header) {
113 unregister_sysctl_table(llc_table_header);
114 llc_table_header = NULL;