Lines Matching refs:fastopen_req
1126 if (tp->fastopen_req) { in tcp_free_fastopen_req()
1127 kfree(tp->fastopen_req); in tcp_free_fastopen_req()
1128 tp->fastopen_req = NULL; in tcp_free_fastopen_req()
1145 if (tp->fastopen_req) in tcp_sendmsg_fastopen()
1148 tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request), in tcp_sendmsg_fastopen()
1150 if (unlikely(!tp->fastopen_req)) in tcp_sendmsg_fastopen()
1152 tp->fastopen_req->data = msg; in tcp_sendmsg_fastopen()
1153 tp->fastopen_req->size = size; in tcp_sendmsg_fastopen()
1154 tp->fastopen_req->uarg = uarg; in tcp_sendmsg_fastopen()
1171 if (tp->fastopen_req) { in tcp_sendmsg_fastopen()
1172 *copied = tp->fastopen_req->copied; in tcp_sendmsg_fastopen()