Searched refs:pkts_acked (Results 1 – 16 of 16) sorted by relevance
/linux-5.19.10/net/ipv4/ |
D | tcp_htcp.c | 31 u16 pkts_acked; member 110 ca->pkts_acked = sample->pkts_acked; in measure_achieved_throughput() 125 ca->packetcount += sample->pkts_acked; in measure_achieved_throughput() 251 tp->snd_cwnd_cnt += ca->pkts_acked; in htcp_cong_avoid() 253 ca->pkts_acked = 1; in htcp_cong_avoid() 264 ca->pkts_acked = 1; in htcp_init() 295 .pkts_acked = measure_achieved_throughput,
|
D | tcp_bic.c | 197 ca->delayed_ack += sample->pkts_acked - in bictcp_acked() 208 .pkts_acked = bictcp_acked,
|
D | tcp_cdg.c | 312 if (sample->pkts_acked == 1 && ca->delack) { in tcp_cdg_acked() 319 } else if (sample->pkts_acked > 1 && ca->delack < 5) { in tcp_cdg_acked() 396 .pkts_acked = tcp_cdg_acked,
|
D | tcp_illinois.c | 91 ca->acked = sample->pkts_acked; in tcp_illinois_acked() 337 .pkts_acked = tcp_illinois_acked,
|
D | tcp_veno.c | 213 .pkts_acked = tcp_veno_pkts_acked,
|
D | tcp_yeah.c | 216 .pkts_acked = tcp_vegas_pkts_acked,
|
D | tcp_vegas.c | 314 .pkts_acked = tcp_vegas_pkts_acked,
|
D | tcp_lp.c | 332 .pkts_acked = tcp_lp_pkts_acked,
|
D | tcp_westwood.c | 287 .pkts_acked = tcp_westwood_pkts_acked,
|
D | bpf_tcp_ca.c | 23 offsetof(struct tcp_congestion_ops, pkts_acked),
|
D | tcp_nv.c | 476 .pkts_acked = tcpnv_acked,
|
D | tcp_cubic.c | 483 .pkts_acked = cubictcp_acked,
|
D | tcp_input.c | 3252 u32 pkts_acked = 0; in tcp_clean_rtx_queue() local 3306 pkts_acked += acked_pcount; in tcp_clean_rtx_queue() 3353 if (pkts_acked == 1 && fully_acked && !prior_sacked && in tcp_clean_rtx_queue() 3379 tcp_remove_reno_sacks(sk, pkts_acked, ece_ack); in tcp_clean_rtx_queue() 3409 if (icsk->icsk_ca_ops->pkts_acked) { in tcp_clean_rtx_queue() 3410 struct ack_sample sample = { .pkts_acked = pkts_acked, in tcp_clean_rtx_queue() 3415 icsk->icsk_ca_ops->pkts_acked(sk, &sample); in tcp_clean_rtx_queue()
|
/linux-5.19.10/tools/testing/selftests/bpf/ |
D | bpf_tcp_helpers.h | 135 __u32 pkts_acked; member 181 void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample); member
|
/linux-5.19.10/tools/testing/selftests/bpf/progs/ |
D | bpf_cubic.c | 537 .pkts_acked = (void *)bpf_cubic_acked,
|
/linux-5.19.10/include/net/ |
D | tcp.h | 1021 u32 pkts_acked; member 1072 void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample); member
|