Home
last modified time | relevance | path

Searched refs:prr_out (Results 1 – 6 of 6) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cc_cubic.c92 sndcnt = (__u32)div64_u64(dividend, (__u64)tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
94 sndcnt = max(prr_delivered - tp->prr_out, newly_acked_sacked); in tcp_cwnd_reduction()
100 sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1)); in tcp_cwnd_reduction()
/linux/Documentation/networking/net_cachelines/
H A Dtcp_sock.rst99 u32 prr_out read_mostly read_mostly tcp_r…
/linux/include/linux/
H A Dtcp.h220 u32 prr_out; /* Total number of pkts sent during Recovery. */ member
/linux/net/ipv4/
H A Dtcp_input.c2675 tp->prr_out = 0; in tcp_init_cwnd_reduction()
2693 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
2695 sndcnt = max_t(int, tp->prr_delivered - tp->prr_out, in tcp_cwnd_reduction()
2702 sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1)); in tcp_cwnd_reduction()
H A Dtcp_output.c2857 tp->prr_out += sent_pkts; in tcp_write_xmit()
3539 tp->prr_out += tcp_skb_pcount(skb); in tcp_xmit_retransmit_queue()
H A Dtcp.c4975 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_txrx, prr_out); in tcp_struct_check()