Home
last modified time | relevance | path

Searched refs:newly_acked_sacked (Results 1 – 3 of 3) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cc_cubic.c67 static void tcp_cwnd_reduction(struct sock *sk, int newly_acked_sacked, in tcp_update_pacing_rate()
75 if (newly_acked_sacked <= 0 || !tp->prior_cwnd)
78 __u32 prr_delivered = tp->prr_delivered + newly_acked_sacked; in tcp_cwnd_reduction()
85 sndcnt = max(prr_delivered - tp->prr_out, newly_acked_sacked); in tcp_cwnd_reduction()
76 tcp_cwnd_reduction(struct sock * sk,int newly_acked_sacked,int newly_lost,int flag) tcp_cwnd_reduction() argument
/linux/net/ipv4/
H A Dtcp_input.c2985 void tcp_cwnd_reduction(struct sock *sk, int newly_acked_sacked, int newly_lost, int flag) in tcp_cwnd_reduction() argument
2991 if (newly_acked_sacked <= 0 || WARN_ON_ONCE(!tp->prior_cwnd)) in tcp_cwnd_reduction()
2994 trace_tcp_cwnd_reduction_tp(sk, newly_acked_sacked, newly_lost, flag); in tcp_cwnd_reduction()
2996 tp->prr_delivered += newly_acked_sacked; in tcp_cwnd_reduction()
3003 newly_acked_sacked); in tcp_cwnd_reduction()
/linux/include/net/
H A Dtcp.h487 void tcp_cwnd_reduction(struct sock *sk, int newly_acked_sacked, int newly_lost, int flag);