aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/sysctl.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2012-08-07 03:23:59 -0400
committerDavid S. Miller <davem@davemloft.net>2012-08-15 02:30:37 -0400
commitebb7e95d9351f77a8ec1fca20eb645051401b7b2 (patch)
tree9edfe4abbdac8c05f3fe19ef3eb5d7e32500b69b /net/sctp/sysctl.c
parentb01a24078fa3fc4f0f447d1306ce5adc495ead86 (diff)
sctp: Add infrastructure for per net sysctls
Start with an empty sctp_net_table that will be populated as the various tunable sysctls are made per net. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Acked-by: Vlad Yasevich <vyasevich@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sysctl.c')
-rw-r--r--net/sctp/sysctl.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
index 2b2bfe933ff1..bee36c408dde 100644
--- a/net/sctp/sysctl.c
+++ b/net/sctp/sysctl.c
@@ -284,6 +284,27 @@ static ctl_table sctp_table[] = {
284 { /* sentinel */ } 284 { /* sentinel */ }
285}; 285};
286 286
287static ctl_table sctp_net_table[] = {
288 { /* sentinel */ }
289};
290
291int sctp_sysctl_net_register(struct net *net)
292{
293 struct ctl_table *table;
294
295 table = kmemdup(sctp_net_table, sizeof(sctp_net_table), GFP_KERNEL);
296 if (!table)
297 return -ENOMEM;
298
299 net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
300 return 0;
301}
302
303void sctp_sysctl_net_unregister(struct net *net)
304{
305 unregister_net_sysctl_table(net->sctp.sysctl_header);
306}
307
287static struct ctl_table_header * sctp_sysctl_header; 308static struct ctl_table_header * sctp_sysctl_header;
288 309
289/* Sysctl registration. */ 310/* Sysctl registration. */