diff options
author | Ian McDonald <ian.mcdonald@jandi.co.nz> | 2006-11-20 22:19:32 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 06:24:42 +0100 |
commit | 82e3ab9dbeebd5c8d5402ad1607d22086271a56d (patch) | |
tree | 23f66bf5a801fc80024f19f502142a2e1927c992 /net/dccp | |
parent | [DCCP] CCID3: Remove non-referenced variable (diff) | |
download | linux-82e3ab9dbeebd5c8d5402ad1607d22086271a56d.tar.xz linux-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')
-rw-r--r-- | net/dccp/sysctl.c | 9 |
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, } }; |