diff options
author | Denis V. Lunev <den@openvz.org> | 2008-04-03 14:26:36 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-03 14:26:36 -0700 |
commit | 4ffe0225e0628a5812168570b50d828f541c6b06 (patch) | |
tree | 93d923b30a7406c97d4a5c71009de11865c99d88 /net/sctp | |
parent | 3d58b5fa8e4c461ab09afdacd3d1754fccca06ad (diff) | |
download | linux-3.10-4ffe0225e0628a5812168570b50d828f541c6b06.tar.gz linux-3.10-4ffe0225e0628a5812168570b50d828f541c6b06.tar.bz2 linux-3.10-4ffe0225e0628a5812168570b50d828f541c6b06.zip |
[SCTP]: Use inet_ctl_sock_create for control socket creation.
sk->sk_proc->(un)hash is noop right now, so the unification is correct.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/protocol.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index 5aea91137fb..6a3be58f606 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -680,16 +680,13 @@ static int sctp_ctl_sock_init(void) else family = PF_INET; - err = sock_create_kern(family, SOCK_SEQPACKET, IPPROTO_SCTP, - &sctp_ctl_socket); + err = inet_ctl_sock_create(&sctp_ctl_socket, family, + SOCK_SEQPACKET, IPPROTO_SCTP); if (err < 0) { printk(KERN_ERR "SCTP: Failed to create the SCTP control socket.\n"); return err; } - sctp_ctl_socket->sk->sk_allocation = GFP_ATOMIC; - inet_sk(sctp_ctl_socket->sk)->uc_ttl = -1; - return 0; } |