fastopen_req      392 include/linux/tcp.h 	struct tcp_fastopen_request *fastopen_req;
fastopen_req      676 net/ipv4/af_inet.c 				tcp_sk(sk)->fastopen_req &&
fastopen_req      677 net/ipv4/af_inet.c 				tcp_sk(sk)->fastopen_req->data ? 1 : 0;
fastopen_req     1133 net/ipv4/tcp.c 	if (tp->fastopen_req) {
fastopen_req     1134 net/ipv4/tcp.c 		kfree(tp->fastopen_req);
fastopen_req     1135 net/ipv4/tcp.c 		tp->fastopen_req = NULL;
fastopen_req     1152 net/ipv4/tcp.c 	if (tp->fastopen_req)
fastopen_req     1155 net/ipv4/tcp.c 	tp->fastopen_req = kzalloc(sizeof(struct tcp_fastopen_request),
fastopen_req     1157 net/ipv4/tcp.c 	if (unlikely(!tp->fastopen_req))
fastopen_req     1159 net/ipv4/tcp.c 	tp->fastopen_req->data = msg;
fastopen_req     1160 net/ipv4/tcp.c 	tp->fastopen_req->size = size;
fastopen_req     1161 net/ipv4/tcp.c 	tp->fastopen_req->uarg = uarg;
fastopen_req     1178 net/ipv4/tcp.c 	if (tp->fastopen_req) {
fastopen_req     1179 net/ipv4/tcp.c 		*copied = tp->fastopen_req->copied;
fastopen_req      441 net/ipv4/tcp_fastopen.c 	if (tp->fastopen_connect && !tp->fastopen_req) {
fastopen_req      450 net/ipv4/tcp_fastopen.c 		tp->fastopen_req = kzalloc(sizeof(*tp->fastopen_req),
fastopen_req      452 net/ipv4/tcp_fastopen.c 		if (tp->fastopen_req)
fastopen_req      453 net/ipv4/tcp_fastopen.c 			tp->fastopen_req->cookie = cookie;
fastopen_req      548 net/ipv4/tcp_minisocks.c 	newtp->fastopen_req = NULL;
fastopen_req      596 net/ipv4/tcp_output.c 	struct tcp_fastopen_request *fastopen = tp->fastopen_req;
fastopen_req     3487 net/ipv4/tcp_output.c 	struct tcp_fastopen_request *fo = tp->fastopen_req;
fastopen_req     3602 net/ipv4/tcp_output.c 	err = tp->fastopen_req ? tcp_send_syn_data(sk, buff) :