Home
last modified time | relevance | path

Searched refs:rtt_us (Results 1 – 7 of 7) sorted by relevance

/net/ipv4/
Dtcp_veno.c72 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()
Dtcp_vegas.c111 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()
Dtcp_lp.c263 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()
Dtcp_yeah.c61 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()
Dtcp_cubic.c383 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()
Dtcp_vegas.h20 extern void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us);
Dtcp_input.c3293 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()