diff mbox

[net-next-2.6,v7,2/5] sctp: Add sysctl support for Auto-ASCONF

Message ID 15A048E7-5190-4B0C-82A0-457792D7850F@sfc.wide.ad.jp
State Superseded, archived
Delegated to: David Miller
Headers show

Commit Message

Michio Honda April 26, 2011, 8:36 a.m. UTC
This patch allows the system administrator to change default Auto-ASCONF on/off behavior via an sysctl value.  

Signed-off-by: Michio Honda <micchie@sfc.wide.ad.jp>
---
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
index 50cb57f..6b39529 100644
--- a/net/sctp/sysctl.c
+++ b/net/sctp/sysctl.c
@@ -183,6 +183,13 @@  static ctl_table sctp_table[] = {
		.proc_handler	= proc_dointvec,
	},
	{
+		.procname	= "default_auto_asconf",
+		.data		= &sctp_default_auto_asconf,
+		.maxlen		= sizeof(int),
+		.mode		= 0644,
+		.proc_handler	= proc_dointvec,
+	},
+	{
		.procname	= "prsctp_enable",
		.data		= &sctp_prsctp_enable,
		.maxlen		= sizeof(int),