diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-05-17 15:53:14 -0700 | 
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-05-17 15:53:14 -0700 | 
| commit | 325a479c4c110db278ef3361460a48c4093252cc (patch) | |
| tree | bcfbf4d0647d9442045639a5c19da59d55190e81 /net/sctp/protocol.c | |
| parent | ebcc80c1b6629a445f7471cc1ddb48faf8a84e70 (diff) | |
| parent | 7f9eaedf894dbaa08c157832e9a6c9c03ffed1ed (diff) | |
Merge with temp tree to get David's gdb inferior calls patch
Diffstat (limited to 'net/sctp/protocol.c')
| -rw-r--r-- | net/sctp/protocol.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index b9813cf3d91c..2e1f9c3556f5 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -1043,6 +1043,9 @@ SCTP_STATIC __init int sctp_init(void)  	sctp_max_retrans_path		= 5;  	sctp_max_retrans_init		= 8; +	/* Sendbuffer growth	    - do per-socket accounting */ +	sctp_sndbuf_policy		= 0; +  	/* HB.interval              - 30 seconds */  	sctp_hb_interval		= 30 * HZ; @@ -1159,8 +1162,6 @@ SCTP_STATIC __init int sctp_init(void)  	status = 0;  out:  	return status; -err_add_protocol: -	proto_unregister(&sctp_prot);  err_ctl_sock_init:  	sctp_v6_exit();  err_v6_init: @@ -1188,6 +1189,8 @@ err_bucket_cachep:  	inet_del_protocol(&sctp_protocol, IPPROTO_SCTP);  	inet_unregister_protosw(&sctp_seqpacket_protosw);  	inet_unregister_protosw(&sctp_stream_protosw); +err_add_protocol: +	proto_unregister(&sctp_prot);  	goto out;  } | 
