Searched refs:rtt_us (Results 1 – 7 of 7) sorted by relevance
/net/ipv4/ |
D | tcp_veno.c | 72 static void tcp_veno_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us) in tcp_veno_pkts_acked() argument 77 if (rtt_us < 0) in tcp_veno_pkts_acked() 81 vrtt = rtt_us + 1; in tcp_veno_pkts_acked()
|
D | tcp_vegas.c | 111 void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us) in tcp_vegas_pkts_acked() argument 116 if (rtt_us < 0) in tcp_vegas_pkts_acked() 120 vrtt = rtt_us + 1; in tcp_vegas_pkts_acked()
|
D | tcp_lp.c | 263 static void tcp_lp_pkts_acked(struct sock *sk, u32 num_acked, s32 rtt_us) in tcp_lp_pkts_acked() argument 268 if (rtt_us > 0) in tcp_lp_pkts_acked() 269 tcp_lp_rtt_sample(sk, rtt_us); in tcp_lp_pkts_acked()
|
D | tcp_yeah.c | 61 static void tcp_yeah_pkts_acked(struct sock *sk, u32 pkts_acked, s32 rtt_us) in tcp_yeah_pkts_acked() argument 69 tcp_vegas_pkts_acked(sk, pkts_acked, rtt_us); in tcp_yeah_pkts_acked()
|
D | tcp_cubic.c | 383 static void bictcp_acked(struct sock *sk, u32 cnt, s32 rtt_us) in bictcp_acked() argument 396 if (rtt_us < 0) in bictcp_acked() 403 delay = usecs_to_jiffies(rtt_us) << 3; in bictcp_acked()
|
D | tcp_vegas.h | 20 extern void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us);
|
D | tcp_input.c | 3293 s32 rtt_us = -1; in tcp_clean_rtx_queue() local 3301 rtt_us = ktime_us_delta(ktime_get_real(), in tcp_clean_rtx_queue() 3304 rtt_us = jiffies_to_usecs(ca_seq_rtt); in tcp_clean_rtx_queue() 3307 ca_ops->pkts_acked(sk, pkts_acked, rtt_us); in tcp_clean_rtx_queue()
|