aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/tcp_ipv6.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 14de50380f4e..af6a0c60f903 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -1605,21 +1605,12 @@ static struct inet_protosw tcpv6_protosw = {
1605 1605
1606void __init tcpv6_init(void) 1606void __init tcpv6_init(void)
1607{ 1607{
1608 int err;
1609
1610 /* register inet6 protocol */ 1608 /* register inet6 protocol */
1611 if (inet6_add_protocol(&tcpv6_protocol, IPPROTO_TCP) < 0) 1609 if (inet6_add_protocol(&tcpv6_protocol, IPPROTO_TCP) < 0)
1612 printk(KERN_ERR "tcpv6_init: Could not register protocol\n"); 1610 printk(KERN_ERR "tcpv6_init: Could not register protocol\n");
1613 inet6_register_protosw(&tcpv6_protosw); 1611 inet6_register_protosw(&tcpv6_protosw);
1614 1612
1615 err = sock_create_kern(PF_INET6, SOCK_RAW, IPPROTO_TCP, &tcp6_socket); 1613 if (inet_csk_ctl_sock_create(&tcp6_socket, PF_INET6, SOCK_RAW,
1616 if (err < 0) 1614 IPPROTO_TCP) < 0)
1617 panic("Failed to create the TCPv6 control socket.\n"); 1615 panic("Failed to create the TCPv6 control socket.\n");
1618 tcp6_socket->sk->sk_allocation = GFP_ATOMIC;
1619
1620 /* Unhash it so that IP input processing does not even
1621 * see it, we do not wish this socket to see incoming
1622 * packets.
1623 */
1624 tcp6_socket->sk->sk_prot->unhash(tcp6_socket->sk);
1625} 1616}