Home
last modified time | relevance | path

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

/linux-6.15/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-6.15/net/dccp/
H A Dtimer.c139 if (sk->sk_state == DCCP_CLOSED || !icsk->icsk_pending) in dccp_write_timer()
148 event = icsk->icsk_pending; in dccp_write_timer()
149 icsk->icsk_pending = 0; in dccp_write_timer()
/linux-6.15/include/net/
H A Dinet_connection_sock.h101 __u8 icsk_pending; member
204 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timer()
237 smp_store_release(&icsk->icsk_pending, what); in inet_csk_reset_xmit_timer()
H A Dtcp.h1528 if (!tcp_sk(sk)->packets_out && !inet_csk(sk)->icsk_pending) in tcp_check_probe_timer()
/linux-6.15/net/ipv4/
H A Dtcp_timer.c697 !icsk->icsk_pending) in tcp_write_timer_handler()
706 event = icsk->icsk_pending; in tcp_write_timer_handler()
716 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
720 smp_store_release(&icsk->icsk_pending, 0); in tcp_write_timer_handler()
733 if (!smp_load_acquire(&icsk->icsk_pending)) in tcp_write_timer()
H A Dinet_diag.c250 u8 icsk_pending; in inet_sk_diag_fill() local
311 icsk_pending = smp_load_acquire(&icsk->icsk_pending); in inet_sk_diag_fill()
312 if (icsk_pending == ICSK_TIME_RETRANS || in inet_sk_diag_fill()
313 icsk_pending == ICSK_TIME_REO_TIMEOUT || in inet_sk_diag_fill()
314 icsk_pending == ICSK_TIME_LOSS_PROBE) { in inet_sk_diag_fill()
319 } else if (icsk_pending == ICSK_TIME_PROBE0) { in inet_sk_diag_fill()
H A Dtcp_recovery.c165 if (inet_csk(sk)->icsk_pending != ICSK_TIME_RETRANS) in tcp_rack_reo_timeout()
H A Dinet_connection_sock.c768 icsk->icsk_pending = icsk->icsk_ack.pending = 0; in inet_csk_init_xmit_timers()
776 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timers()
792 smp_store_release(&icsk->icsk_pending, 0); in inet_csk_clear_xmit_timers_sync()
H A Dtcp_ipv4.c2917 u8 icsk_pending; local
2921 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2922 if (icsk_pending == ICSK_TIME_RETRANS ||
2923 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2924 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2927 } else if (icsk_pending == ICSK_TIME_PROBE0) {
H A Dtcp_output.c82 if (!prior_packets || icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) in tcp_event_new_data_sent()
2970 smp_store_release(&inet_csk(sk)->icsk_pending, 0); in tcp_send_loss_probe()
3003 smp_store_release(&inet_csk(sk)->icsk_pending, 0); in tcp_send_loss_probe()
3549 icsk->icsk_pending != ICSK_TIME_REO_TIMEOUT) in tcp_xmit_retransmit_queue()
H A Dtcp_input.c3288 if (icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT || in tcp_rearm_rto()
3289 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) { in tcp_rearm_rto()
/linux-6.15/Documentation/networking/net_cachelines/
H A Dinet_connection_sock.rst31 u8 icsk_pending read_write …
/linux-6.15/net/ipv6/
H A Dtcp_ipv6.c2184 u8 icsk_pending; local
2193 icsk_pending = smp_load_acquire(&icsk->icsk_pending);
2194 if (icsk_pending == ICSK_TIME_RETRANS ||
2195 icsk_pending == ICSK_TIME_REO_TIMEOUT ||
2196 icsk_pending == ICSK_TIME_LOSS_PROBE) {
2199 } else if (icsk_pending == ICSK_TIME_PROBE0) {
/linux-6.15/net/mptcp/
H A Dprotocol.c424 return inet_csk(ssk)->icsk_pending && !subflow->stale_count ? in mptcp_timeout_from_subflow()