Searched refs:twsk_prot (Results 1 – 8 of 8) sorted by relevance
/linux-4.4.14/include/net/ |
D | timewait_sock.h | 29 if (sk->sk_prot->twsk_prot->twsk_unique != NULL) in twsk_unique() 30 return sk->sk_prot->twsk_prot->twsk_unique(sk, sktw, twp); in twsk_unique() 36 if (sk->sk_prot->twsk_prot->twsk_destructor != NULL) in twsk_destructor() 37 sk->sk_prot->twsk_prot->twsk_destructor(sk); in twsk_destructor()
|
D | sock.h | 1042 struct timewait_sock_ops *twsk_prot; member
|
/linux-4.4.14/net/ipv4/ |
D | inet_timewait_sock.c | 73 kmem_cache_free(tw->tw_prot->twsk_prot->twsk_slab, tw); in inet_twsk_free() 165 tw = kmem_cache_alloc(sk->sk_prot_creator->twsk_prot->twsk_slab, in inet_twsk_alloc()
|
D | tcp_ipv4.c | 2339 .twsk_prot = &tcp_timewait_sock_ops,
|
/linux-4.4.14/net/core/ |
D | sock.c | 2853 if (prot->twsk_prot != NULL) { in proto_register() 2854 prot->twsk_prot->twsk_slab_name = kasprintf(GFP_KERNEL, "tw_sock_%s", prot->name); in proto_register() 2856 if (prot->twsk_prot->twsk_slab_name == NULL) in proto_register() 2859 prot->twsk_prot->twsk_slab = in proto_register() 2860 kmem_cache_create(prot->twsk_prot->twsk_slab_name, in proto_register() 2861 prot->twsk_prot->twsk_obj_size, in proto_register() 2865 if (prot->twsk_prot->twsk_slab == NULL) in proto_register() 2877 kfree(prot->twsk_prot->twsk_slab_name); in proto_register() 2900 if (prot->twsk_prot != NULL && prot->twsk_prot->twsk_slab != NULL) { in proto_unregister() 2901 kmem_cache_destroy(prot->twsk_prot->twsk_slab); in proto_unregister() [all …]
|
/linux-4.4.14/net/dccp/ |
D | ipv4.c | 953 .twsk_prot = &dccp_timewait_sock_ops,
|
D | ipv6.c | 1007 .twsk_prot = &dccp6_timewait_sock_ops,
|
/linux-4.4.14/net/ipv6/ |
D | tcp_ipv6.c | 1885 .twsk_prot = &tcp6_timewait_sock_ops,
|