Searched refs:pkts_acked (Results 1 – 12 of 12) sorted by relevance
/linux-4.4.14/net/ipv4/ |
D | tcp_yeah.c | 39 u32 pkts_acked; member 59 static void tcp_yeah_pkts_acked(struct sock *sk, u32 pkts_acked, s32 rtt_us) in tcp_yeah_pkts_acked() argument 65 yeah->pkts_acked = pkts_acked; in tcp_yeah_pkts_acked() 67 tcp_vegas_pkts_acked(sk, pkts_acked, rtt_us); in tcp_yeah_pkts_acked() 84 tp->snd_cwnd_cnt += yeah->pkts_acked; in tcp_yeah_cong_avoid() 91 yeah->pkts_acked = 1; in tcp_yeah_cong_avoid() 232 .pkts_acked = tcp_yeah_pkts_acked,
|
D | tcp_htcp.c | 30 u16 pkts_acked; member 102 u32 pkts_acked, s32 rtt) in measure_achieved_throughput() argument 110 ca->pkts_acked = pkts_acked; in measure_achieved_throughput() 125 ca->packetcount += 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_illinois.c | 85 static void tcp_illinois_acked(struct sock *sk, u32 pkts_acked, s32 rtt) in tcp_illinois_acked() argument 89 ca->acked = pkts_acked; in tcp_illinois_acked() 332 .pkts_acked = tcp_illinois_acked,
|
D | tcp_veno.c | 207 .pkts_acked = tcp_veno_pkts_acked,
|
D | tcp_bic.c | 218 .pkts_acked = bictcp_acked,
|
D | tcp_vegas.c | 311 .pkts_acked = tcp_vegas_pkts_acked,
|
D | tcp_lp.c | 320 .pkts_acked = tcp_lp_pkts_acked,
|
D | tcp_westwood.c | 283 .pkts_acked = tcp_westwood_pkts_acked,
|
D | tcp_cdg.c | 403 .pkts_acked = tcp_cdg_acked,
|
D | tcp_cubic.c | 475 .pkts_acked = bictcp_acked,
|
D | tcp_input.c | 3111 u32 pkts_acked = 0; in tcp_clean_rtx_queue() local 3151 reord = min(pkts_acked, reord); in tcp_clean_rtx_queue() 3164 pkts_acked += acked_pcount; in tcp_clean_rtx_queue() 3218 tcp_remove_reno_sacks(sk, pkts_acked); in tcp_clean_rtx_queue() 3226 delta = tcp_is_fack(tp) ? pkts_acked : in tcp_clean_rtx_queue() 3231 tp->fackets_out -= min(pkts_acked, tp->fackets_out); in tcp_clean_rtx_queue() 3242 if (icsk->icsk_ca_ops->pkts_acked) in tcp_clean_rtx_queue() 3243 icsk->icsk_ca_ops->pkts_acked(sk, pkts_acked, ca_rtt_us); in tcp_clean_rtx_queue()
|
/linux-4.4.14/include/net/ |
D | tcp.h | 872 void (*pkts_acked)(struct sock *sk, u32 num_acked, s32 rtt_us); member
|