Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ffe0225 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller
Browse files

[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: default avatarDenis V. Lunev <den@openvz.org>
Acked-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3d58b5fa
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -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;
}