Lines Matching refs:child
134 struct sock *child; in tcp_fastopen_create_child() local
142 child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL, in tcp_fastopen_create_child()
144 if (!child) in tcp_fastopen_create_child()
155 tp = tcp_sk(child); in tcp_fastopen_create_child()
169 inet_csk_reset_xmit_timer(child, ICSK_TIME_RETRANS, in tcp_fastopen_create_child()
175 inet_csk(child)->icsk_af_ops->rebuild_header(child); in tcp_fastopen_create_child()
176 tcp_init_congestion_control(child); in tcp_fastopen_create_child()
177 tcp_mtup_init(child); in tcp_fastopen_create_child()
178 tcp_init_metrics(child); in tcp_fastopen_create_child()
179 tcp_init_buffer_space(child); in tcp_fastopen_create_child()
197 skb_set_owner_r(skb2, child); in tcp_fastopen_create_child()
198 __skb_queue_tail(&child->sk_receive_queue, skb2); in tcp_fastopen_create_child()
213 return child; in tcp_fastopen_create_child()
263 struct sock *child; in tcp_try_fastopen() local
292 child = tcp_fastopen_create_child(sk, skb, dst, req); in tcp_try_fastopen()
293 if (child) { in tcp_try_fastopen()
297 return child; in tcp_try_fastopen()