Lines Matching refs:fastopen_req
998 if (tp->fastopen_req) { in tcp_free_fastopen_req()
999 kfree(tp->fastopen_req); in tcp_free_fastopen_req()
1000 tp->fastopen_req = NULL; in tcp_free_fastopen_req()
1017 if (tp->fastopen_req) in tcp_sendmsg_fastopen()
1020 tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request), in tcp_sendmsg_fastopen()
1022 if (unlikely(!tp->fastopen_req)) in tcp_sendmsg_fastopen()
1024 tp->fastopen_req->data = msg; in tcp_sendmsg_fastopen()
1025 tp->fastopen_req->size = size; in tcp_sendmsg_fastopen()
1026 tp->fastopen_req->uarg = uarg; in tcp_sendmsg_fastopen()
1043 if (tp->fastopen_req) { in tcp_sendmsg_fastopen()
1044 *copied = tp->fastopen_req->copied; in tcp_sendmsg_fastopen()