Lines Matching refs:fastopen_req
1139 if (tp->fastopen_req) { in tcp_free_fastopen_req()
1140 kfree(tp->fastopen_req); in tcp_free_fastopen_req()
1141 tp->fastopen_req = NULL; in tcp_free_fastopen_req()
1159 if (tp->fastopen_req) in tcp_sendmsg_fastopen()
1162 tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request), in tcp_sendmsg_fastopen()
1164 if (unlikely(!tp->fastopen_req)) in tcp_sendmsg_fastopen()
1166 tp->fastopen_req->data = msg; in tcp_sendmsg_fastopen()
1167 tp->fastopen_req->size = size; in tcp_sendmsg_fastopen()
1168 tp->fastopen_req->uarg = uarg; in tcp_sendmsg_fastopen()
1185 if (tp->fastopen_req) { in tcp_sendmsg_fastopen()
1186 *copied = tp->fastopen_req->copied; in tcp_sendmsg_fastopen()