Home
last modified time | relevance | path

Searched refs:prr_delivered (Results 1 – 4 of 4) sorted by relevance

/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dbpf_cc_cubic.c87 __u32 prr_delivered = tp->prr_delivered + newly_acked_sacked; in tcp_cwnd_reduction() local
91 (__u64)tp->snd_ssthresh * prr_delivered + tp->prior_cwnd - 1; in tcp_cwnd_reduction()
94 sndcnt = max(prr_delivered - tp->prr_out, newly_acked_sacked); in tcp_cwnd_reduction()
/linux-6.15/Documentation/networking/net_cachelines/
H A Dtcp_sock.rst100 u32 prr_delivered
/linux-6.15/include/linux/
H A Dtcp.h406 u32 prr_delivered; /* Number of newly delivered packets to member
/linux-6.15/net/ipv4/
H A Dtcp_input.c2707 tp->prr_delivered = 0; in tcp_init_cwnd_reduction()
2724 tp->prr_delivered += newly_acked_sacked; in tcp_cwnd_reduction()
2726 u64 dividend = (u64)tp->snd_ssthresh * tp->prr_delivered + in tcp_cwnd_reduction()
2730 sndcnt = max_t(int, tp->prr_delivered - tp->prr_out, in tcp_cwnd_reduction()