Home
last modified time | relevance | path

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

/linux-6.12.1/tools/testing/selftests/bpf/progs/
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.12.1/Documentation/networking/net_cachelines/
Dtcp_sock.rst98 u32 prr_delivered
/linux-6.12.1/include/linux/
Dtcp.h402 u32 prr_delivered; /* Number of newly delivered packets to member
/linux-6.12.1/net/ipv4/
Dtcp_input.c2698 tp->prr_delivered = 0; in tcp_init_cwnd_reduction()
2713 tp->prr_delivered += newly_acked_sacked; in tcp_cwnd_reduction()
2715 u64 dividend = (u64)tp->snd_ssthresh * tp->prr_delivered + in tcp_cwnd_reduction()
2719 sndcnt = max_t(int, tp->prr_delivered - tp->prr_out, in tcp_cwnd_reduction()