aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/sysctl.c
diff options
context:
space:
mode:
authorIan McDonald <ian.mcdonald@jandi.co.nz>2006-11-20 19:19:32 -0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:24:42 -0800
commit82e3ab9dbeebd5c8d5402ad1607d22086271a56d (patch)
tree23f66bf5a801fc80024f19f502142a2e1927c992 /net/dccp/sysctl.c
parent[DCCP] CCID3: Remove non-referenced variable (diff)
downloadlinux-dev-82e3ab9dbeebd5c8d5402ad1607d22086271a56d.tar.xz
linux-dev-82e3ab9dbeebd5c8d5402ad1607d22086271a56d.zip
[DCCP]: Adds the tx buffer sysctls
This one got lost on the way from Ian to Gerrit to me, fix it. Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net/dccp/sysctl.c')
-rw-r--r--net/dccp/sysctl.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/dccp/sysctl.c b/net/dccp/sysctl.c
index 8b62061e5701..4775ba3faa04 100644
--- a/net/dccp/sysctl.c
+++ b/net/dccp/sysctl.c
@@ -91,6 +91,15 @@ static struct ctl_table dccp_default_table[] = {
.mode = 0644,
.proc_handler = proc_dointvec,
},
+ {
+ .ctl_name = NET_DCCP_DEFAULT_TX_QLEN,
+ .procname = "tx_qlen",
+ .data = &sysctl_dccp_tx_qlen,
+ .maxlen = sizeof(sysctl_dccp_tx_qlen),
+ .mode = 0644,
+ .proc_handler = proc_dointvec,
+ },
+
{ .ctl_name = 0, }
};