Searched refs:pkts_acked (Results 1 – 16 of 16) sorted by relevance
/kernel/linux/linux-5.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() 335 .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 | 313 .pkts_acked = tcp_vegas_pkts_acked,
|
D | bpf_tcp_ca.c | 18 offsetof(struct tcp_congestion_ops, pkts_acked),
|
D | tcp_westwood.c | 286 .pkts_acked = tcp_westwood_pkts_acked,
|
D | tcp_lp.c | 325 .pkts_acked = tcp_lp_pkts_acked,
|
D | tcp_nv.c | 477 .pkts_acked = tcpnv_acked,
|
D | tcp_cubic.c | 490 .pkts_acked = bictcp_acked,
|
D | tcp_input.c | 3179 u32 pkts_acked = 0; in tcp_clean_rtx_queue() local 3235 pkts_acked += acked_pcount; in tcp_clean_rtx_queue() 3282 if (pkts_acked == 1 && last_in_flight < tp->mss_cache && in tcp_clean_rtx_queue() 3308 tcp_remove_reno_sacks(sk, pkts_acked, ece_ack); in tcp_clean_rtx_queue() 3338 if (icsk->icsk_ca_ops->pkts_acked) { in tcp_clean_rtx_queue() 3339 struct ack_sample sample = { .pkts_acked = pkts_acked, in tcp_clean_rtx_queue() 3343 icsk->icsk_ca_ops->pkts_acked(sk, &sample); in tcp_clean_rtx_queue()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/ |
D | bpf_tcp_helpers.h | 124 __u32 pkts_acked; member 170 void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample); member
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
D | bpf_cubic.c | 543 .pkts_acked = (void *)bictcp_acked,
|
/kernel/linux/linux-5.10/include/net/ |
D | tcp.h | 1025 u32 pkts_acked; member 1077 void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample); member
|