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()
H A Dtcp.h1654 if (!tcp_sk(sk)->packets_out && !inet_csk(sk)->icsk_pending) in tcp_check_probe_timer()
/linux/net/ipv4/
H A Dtcp_timer.c701 !icsk->icsk_pending) in tcp_write_timer_handler()
710 event = icsk->icsk_pending; in tcp_write_timer_handler()
720 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
724 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
735 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.c2777 u8 icsk_pending; local
2781 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2782 if (icsk_pending == ICSK_TIME_RETRANS ||
2783 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2784 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2787 } else if (icsk_pending == ICSK_TIME_PROBE0) {
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.c2116 u8 icsk_pending; local
2125 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2126 if (icsk_pending == ICSK_TIME_RETRANS ||
2127 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2128 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2131 } else if (icsk_pending == ICSK_TIME_PROBE0) {
/linux/net/mptcp/
H A Dprotocol.c515 return inet_csk(ssk)->icsk_pending && !subflow->stale_count ? in mptcp_timeout_from_subflow()