Searched refs:pkts_acked (Results 1 – 13 of 13) sorted by relevance
/Linux-v5.4/net/ipv4/ |
D | tcp_yeah.c | 40 u32 pkts_acked; member 67 yeah->pkts_acked = sample->pkts_acked; in tcp_yeah_pkts_acked() 86 tp->snd_cwnd_cnt += yeah->pkts_acked; in tcp_yeah_cong_avoid() 93 yeah->pkts_acked = 1; in tcp_yeah_cong_avoid() 235 .pkts_acked = tcp_yeah_pkts_acked,
|
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 | 196 ca->delayed_ack += sample->pkts_acked - in bictcp_acked() 207 .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 | 210 .pkts_acked = tcp_veno_pkts_acked,
|
D | tcp_vegas.c | 313 .pkts_acked = tcp_vegas_pkts_acked,
|
D | tcp_lp.c | 325 .pkts_acked = tcp_lp_pkts_acked,
|
D | tcp_westwood.c | 286 .pkts_acked = tcp_westwood_pkts_acked,
|
D | tcp_nv.c | 477 .pkts_acked = tcpnv_acked,
|
D | tcp_cubic.c | 465 .pkts_acked = bictcp_acked,
|
D | tcp_input.c | 3080 u32 pkts_acked = 0; in tcp_clean_rtx_queue() local 3138 pkts_acked += acked_pcount; in tcp_clean_rtx_queue() 3179 if (pkts_acked == 1 && last_in_flight < tp->mss_cache && in tcp_clean_rtx_queue() 3205 tcp_remove_reno_sacks(sk, pkts_acked); in tcp_clean_rtx_queue() 3235 if (icsk->icsk_ca_ops->pkts_acked) { in tcp_clean_rtx_queue() 3236 struct ack_sample sample = { .pkts_acked = pkts_acked, in tcp_clean_rtx_queue() 3240 icsk->icsk_ca_ops->pkts_acked(sk, &sample); in tcp_clean_rtx_queue()
|
/Linux-v5.4/include/net/ |
D | tcp.h | 997 u32 pkts_acked; member 1049 void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample); member
|