2 * sysctl_net_llc.c: sysctl interface to LLC net subsystem.
8 #include <linux/init.h>
9 #include <linux/sysctl.h>
13 #error This file should not be compiled without CONFIG_SYSCTL defined
16 static struct ctl_table llc2_timeout_table[] = {
19 .data = &sysctl_llc2_ack_timeout,
20 .maxlen = sizeof(long),
22 .proc_handler = proc_dointvec_jiffies,
26 .data = &sysctl_llc2_busy_timeout,
27 .maxlen = sizeof(long),
29 .proc_handler = proc_dointvec_jiffies,
33 .data = &sysctl_llc2_p_timeout,
34 .maxlen = sizeof(long),
36 .proc_handler = proc_dointvec_jiffies,
40 .data = &sysctl_llc2_rej_timeout,
41 .maxlen = sizeof(long),
43 .proc_handler = proc_dointvec_jiffies,
48 static struct ctl_table llc_station_table[] = {
50 .procname = "ack_timeout",
51 .data = &sysctl_llc_station_ack_timeout,
52 .maxlen = sizeof(long),
54 .proc_handler = proc_dointvec_jiffies,
59 static struct ctl_table llc2_dir_timeout_table[] = {
61 .procname = "timeout",
63 .child = llc2_timeout_table,
68 static struct ctl_table llc_table[] = {
72 .child = llc2_dir_timeout_table,
75 .procname = "station",
77 .child = llc_station_table,
82 static struct ctl_path llc_path[] = {
83 { .procname = "net", },
84 { .procname = "llc", },
88 static struct ctl_table_header *llc_table_header;
90 int __init llc_sysctl_init(void)
92 llc_table_header = register_sysctl_paths(llc_path, llc_table);
94 return llc_table_header ? 0 : -ENOMEM;
97 void llc_sysctl_exit(void)
99 if (llc_table_header) {
100 unregister_sysctl_table(llc_table_header);
101 llc_table_header = NULL;