1 // SPDX-License-Identifier: GPL-2.0
3 * sysctl_net_llc.c: sysctl interface to LLC net subsystem.
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
9 #include <linux/init.h>
10 #include <linux/sysctl.h>
11 #include <net/net_namespace.h>
15 #error This file should not be compiled without CONFIG_SYSCTL defined
18 static struct ctl_table llc2_timeout_table
[] = {
21 .data
= &sysctl_llc2_ack_timeout
,
22 .maxlen
= sizeof(sysctl_llc2_ack_timeout
),
24 .proc_handler
= proc_dointvec_jiffies
,
28 .data
= &sysctl_llc2_busy_timeout
,
29 .maxlen
= sizeof(sysctl_llc2_busy_timeout
),
31 .proc_handler
= proc_dointvec_jiffies
,
35 .data
= &sysctl_llc2_p_timeout
,
36 .maxlen
= sizeof(sysctl_llc2_p_timeout
),
38 .proc_handler
= proc_dointvec_jiffies
,
42 .data
= &sysctl_llc2_rej_timeout
,
43 .maxlen
= sizeof(sysctl_llc2_rej_timeout
),
45 .proc_handler
= proc_dointvec_jiffies
,
50 static struct ctl_table llc_station_table
[] = {
54 static struct ctl_table_header
*llc2_timeout_header
;
55 static struct ctl_table_header
*llc_station_header
;
57 int __init
llc_sysctl_init(void)
59 llc2_timeout_header
= register_net_sysctl(&init_net
, "net/llc/llc2/timeout", llc2_timeout_table
);
60 llc_station_header
= register_net_sysctl(&init_net
, "net/llc/station", llc_station_table
);
62 if (!llc2_timeout_header
|| !llc_station_header
) {
69 void llc_sysctl_exit(void)
71 if (llc2_timeout_header
) {
72 unregister_net_sysctl_table(llc2_timeout_header
);
73 llc2_timeout_header
= NULL
;
75 if (llc_station_header
) {
76 unregister_net_sysctl_table(llc_station_header
);
77 llc_station_header
= NULL
;