Lines Matching refs:fastopen_req
984 if (tp->fastopen_req) { in tcp_free_fastopen_req()
985 kfree(tp->fastopen_req); in tcp_free_fastopen_req()
986 tp->fastopen_req = NULL; in tcp_free_fastopen_req()
1003 if (tp->fastopen_req) in tcp_sendmsg_fastopen()
1006 tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request), in tcp_sendmsg_fastopen()
1008 if (unlikely(!tp->fastopen_req)) in tcp_sendmsg_fastopen()
1010 tp->fastopen_req->data = msg; in tcp_sendmsg_fastopen()
1011 tp->fastopen_req->size = size; in tcp_sendmsg_fastopen()
1012 tp->fastopen_req->uarg = uarg; in tcp_sendmsg_fastopen()
1029 if (tp->fastopen_req) { in tcp_sendmsg_fastopen()
1030 *copied = tp->fastopen_req->copied; in tcp_sendmsg_fastopen()