aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sctp/protocol.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index 5aea91137fbb..6a3be58f606d 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -680,16 +680,13 @@ static int sctp_ctl_sock_init(void)
680 else 680 else
681 family = PF_INET; 681 family = PF_INET;
682 682
683 err = sock_create_kern(family, SOCK_SEQPACKET, IPPROTO_SCTP, 683 err = inet_ctl_sock_create(&sctp_ctl_socket, family,
684 &sctp_ctl_socket); 684 SOCK_SEQPACKET, IPPROTO_SCTP);
685 if (err < 0) { 685 if (err < 0) {
686 printk(KERN_ERR 686 printk(KERN_ERR
687 "SCTP: Failed to create the SCTP control socket.\n"); 687 "SCTP: Failed to create the SCTP control socket.\n");
688 return err; 688 return err;
689 } 689 }
690 sctp_ctl_socket->sk->sk_allocation = GFP_ATOMIC;
691 inet_sk(sctp_ctl_socket->sk)->uc_ttl = -1;
692
693 return 0; 690 return 0;
694} 691}
695 692