mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-04 05:11:46 +00:00
[ICSK]: Introduce inet_csk_ctl_sock_create
Consolidating open coded sequences in tcp and dccp, v4 and v6. Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7247887357
commit
c4d9390941
6 changed files with 31 additions and 71 deletions
|
@ -1828,21 +1828,10 @@ struct proto tcp_prot = {
|
|||
.rsk_prot = &tcp_request_sock_ops,
|
||||
};
|
||||
|
||||
|
||||
|
||||
void __init tcp_v4_init(struct net_proto_family *ops)
|
||||
{
|
||||
int err = sock_create_kern(PF_INET, SOCK_RAW, IPPROTO_TCP, &tcp_socket);
|
||||
if (err < 0)
|
||||
if (inet_csk_ctl_sock_create(&tcp_socket, PF_INET, SOCK_RAW, IPPROTO_TCP) < 0)
|
||||
panic("Failed to create the TCP control socket.\n");
|
||||
tcp_socket->sk->sk_allocation = GFP_ATOMIC;
|
||||
inet_sk(tcp_socket->sk)->uc_ttl = -1;
|
||||
|
||||
/* Unhash it so that IP input processing does not even
|
||||
* see it, we do not wish this socket to see incoming
|
||||
* packets.
|
||||
*/
|
||||
tcp_socket->sk->sk_prot->unhash(tcp_socket->sk);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(ipv4_specific);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue