Searched refs:fastopen_req (Results 1 – 6 of 6) sorted by relevance
441 if (tp->fastopen_connect && !tp->fastopen_req) { in tcp_fastopen_defer_connect()450 tp->fastopen_req = kzalloc(sizeof(*tp->fastopen_req), in tcp_fastopen_defer_connect()452 if (tp->fastopen_req) in tcp_fastopen_defer_connect()453 tp->fastopen_req->cookie = cookie; in tcp_fastopen_defer_connect()
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()[all …]
548 newtp->fastopen_req = NULL; in tcp_create_openreq_child()
676 tcp_sk(sk)->fastopen_req && in __inet_stream_connect()677 tcp_sk(sk)->fastopen_req->data ? 1 : 0; in __inet_stream_connect()
593 struct tcp_fastopen_request *fastopen = tp->fastopen_req; in tcp_syn_options()3466 struct tcp_fastopen_request *fo = tp->fastopen_req; in tcp_send_syn_data()3581 err = tp->fastopen_req ? tcp_send_syn_data(sk, buff) : in tcp_connect()
392 struct tcp_fastopen_request *fastopen_req; member