Searched refs:syn_data (Results 1 – 5 of 5) sorted by relevance
/Linux-v5.4/net/ipv4/ |
D | tcp_fastopen.c | 343 bool syn_data = TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq + 1; in tcp_try_fastopen() local 353 (syn_data || foc->len >= 0) && in tcp_try_fastopen() 359 if (syn_data && in tcp_try_fastopen() 558 if ((tp->syn_fastopen || tp->syn_data || tp->syn_data_acked) && in tcp_fastopen_active_detect_blackhole()
|
D | tcp_output.c | 3468 struct sk_buff *syn_data; in tcp_send_syn_data() local 3488 syn_data = sk_stream_alloc_skb(sk, space, sk->sk_allocation, false); in tcp_send_syn_data() 3489 if (!syn_data) in tcp_send_syn_data() 3491 syn_data->ip_summed = CHECKSUM_PARTIAL; in tcp_send_syn_data() 3492 memcpy(syn_data->cb, syn->cb, sizeof(syn->cb)); in tcp_send_syn_data() 3494 int copied = copy_from_iter(skb_put(syn_data, space), space, in tcp_send_syn_data() 3497 tcp_skb_tsorted_anchor_cleanup(syn_data); in tcp_send_syn_data() 3498 kfree_skb(syn_data); in tcp_send_syn_data() 3502 skb_trim(syn_data, copied); in tcp_send_syn_data() 3505 skb_zcopy_set(syn_data, fo->uarg, NULL); in tcp_send_syn_data() [all …]
|
D | tcp_input.c | 5782 struct sk_buff *data = tp->syn_data ? tcp_rtx_queue_head(sk) : NULL; in tcp_rcv_fastopen_synack() 5806 } else if (cookie->len < 0 && !tp->syn_data) { in tcp_rcv_fastopen_synack() 5826 tp->syn_data_acked = tp->syn_data; in tcp_rcv_fastopen_synack() 5974 fastopen_fail = (tp->syn_fastopen || tp->syn_data) && in tcp_rcv_synsent_state_process()
|
/Linux-v5.4/include/linux/ |
D | tcp.h | 233 u8 syn_data:1, /* SYN includes data */ member
|
/Linux-v5.4/net/core/ |
D | filter.c | 4356 if (val <= 0 || tp->data_segs_out > tp->syn_data) in BPF_CALL_5()
|