Home
last modified time | relevance | path

Searched full:prr_out (Results 1 – 4 of 4) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cc_cubic.c83 sndcnt = (__u32)div64_u64(dividend, (__u64)tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
85 sndcnt = max(prr_delivered - tp->prr_out, newly_acked_sacked); in tcp_cwnd_reduction()
91 sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1)); in tcp_cwnd_reduction()
/linux/net/ipv4/
H A Dtcp_input.c2775 tp->prr_out = 0; in tcp_init_cwnd_reduction()
2795 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out; in tcp_cwnd_reduction()
2797 sndcnt = max_t(int, tp->prr_delivered - tp->prr_out, in tcp_cwnd_reduction()
2804 sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1)); in tcp_cwnd_reduction()
H A Dtcp_output.c3029 tp->prr_out += sent_pkts; in tcp_write_xmit()
3723 tp->prr_out += tcp_skb_pcount(skb); in tcp_xmit_retransmit_queue()
H A Dtcp.c5127 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_txrx, prr_out); in tcp_struct_check()