Home
last modified time | relevance | path

Searched refs:icsk_pending (Results 1 – 11 of 11) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_tcp4.c98 if (icsk->icsk_pending == ICSK_TIME_RETRANS || in dump_tcp_sock()
99 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT || in dump_tcp_sock()
100 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) { in dump_tcp_sock()
103 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) { in dump_tcp_sock()
H A Dbpf_iter_tcp6.c98 if (icsk->icsk_pending == ICSK_TIME_RETRANS || in dump_tcp6_sock()
99 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT || in dump_tcp6_sock()
100 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) { in dump_tcp6_sock()
103 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) { in dump_tcp6_sock()
/linux/net/dccp/
H A Dtimer.c
/linux/include/net/
H A Dinet_connection_sock.h107 __u8 icsk_pending; member
209 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timer()
242 smp_store_release(&icsk->icsk_pending, what); in inet_csk_reset_xmit_timer()
/linux/net/ipv4/
H A Dtcp_timer.c703 !icsk->icsk_pending) in tcp_write_timer_handler()
712 event = icsk->icsk_pending; in tcp_write_timer_handler()
722 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
726 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
737 if (!smp_load_acquire(&inet_csk(sk)->icsk_pending)) in tcp_write_timer()
H A Dinet_connection_sock.c728 icsk->icsk_pending = icsk->icsk_ack.pending = 0; in inet_csk_init_xmit_timers()
735 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timers()
750 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timers_sync()
H A Dtcp_ipv4.c2782 u8 icsk_pending; local
2786 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2787 if (icsk_pending == ICSK_TIME_RETRANS ||
2788 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2789 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2792 } else if (icsk_pending == ICSK_TIME_PROBE0) {
H A Dtcp_output.c98 if (!prior_packets || icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) in tcp_event_new_data_sent()
3193 smp_store_release(&inet_csk(sk)->icsk_pending, 0); in tcp_send_loss_probe()
3226 smp_store_release(&inet_csk(sk)->icsk_pending, 0); in tcp_send_loss_probe()
3789 icsk->icsk_pending != ICSK_TIME_REO_TIMEOUT) in tcp_xmit_retransmit_queue()
H A Dtcp_input.c3540 if (icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT || in tcp_rearm_rto()
3541 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) { in tcp_rearm_rto()
/linux/net/ipv6/
H A Dtcp_ipv6.c2136 u8 icsk_pending; local
2145 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2146 if (icsk_pending == ICSK_TIME_RETRANS ||
2147 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2148 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2151 } else if (icsk_pending == ICSK_TIME_PROBE0) {
/linux/net/mptcp/
H A Dprotocol.c607 return inet_csk(ssk)->icsk_pending && !subflow->stale_count ? in mptcp_timeout_from_subflow()