diff options
| author | 2006-01-19 16:53:02 -0800 | |
|---|---|---|
| committer | 2006-01-19 16:53:02 -0800 | |
| commit | cf9e50a920be24b734fb91f19b8844f8509cb981 (patch) | |
| tree | a077c31bcfe9844bcfa7ff1fe07364b5b7958622 /net/sctp/sysctl.c | |
| parent | Merge master.kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6 (diff) | |
| parent | [SCTP]: Fix sctp_rcv_ootb() to handle the last chunk of a packet correctly. (diff) | |
| download | wireguard-linux-cf9e50a920be24b734fb91f19b8844f8509cb981.tar.xz wireguard-linux-cf9e50a920be24b734fb91f19b8844f8509cb981.zip | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/sridhar/lksctp-2.6
Diffstat (limited to 'net/sctp/sysctl.c')
| -rw-r--r-- | net/sctp/sysctl.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c index fcd7096c953d..dc6f3ff32358 100644 --- a/net/sctp/sysctl.c +++ b/net/sctp/sysctl.c @@ -159,12 +159,9 @@ static ctl_table sctp_table[] = { .ctl_name = NET_SCTP_PRESERVE_ENABLE, .procname = "cookie_preserve_enable", .data = &sctp_cookie_preserve_enable, - .maxlen = sizeof(long), + .maxlen = sizeof(int), .mode = 0644, - .proc_handler = &proc_doulongvec_ms_jiffies_minmax, - .strategy = &sctp_sysctl_jiffies_ms, - .extra1 = &rto_timer_min, - .extra2 = &rto_timer_max + .proc_handler = &proc_dointvec }, { .ctl_name = NET_SCTP_RTO_ALPHA, |
