Searched refs:rtt_us (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/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 | 110 void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us) in tcp_vegas_pkts_acked() argument 115 if (rtt_us < 0) in tcp_vegas_pkts_acked() 119 vrtt = rtt_us + 1; in tcp_vegas_pkts_acked()
|
D | tcp_cdg.c | 297 static void tcp_cdg_acked(struct sock *sk, u32 num_acked, s32 rtt_us) in tcp_cdg_acked() argument 302 if (rtt_us <= 0) in tcp_cdg_acked() 314 ca->rtt.min = min(ca->rtt.min, rtt_us); in tcp_cdg_acked() 322 ca->rtt.min = min_not_zero(ca->rtt.min, rtt_us); in tcp_cdg_acked() 323 ca->rtt.max = max(ca->rtt.max, rtt_us); in tcp_cdg_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_vegas.h | 20 void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us);
|
D | tcp_yeah.c | 59 static void tcp_yeah_pkts_acked(struct sock *sk, u32 pkts_acked, s32 rtt_us) in tcp_yeah_pkts_acked() argument 67 tcp_vegas_pkts_acked(sk, pkts_acked, rtt_us); in tcp_yeah_pkts_acked()
|
D | tcp_cubic.c | 440 static void bictcp_acked(struct sock *sk, u32 cnt, s32 rtt_us) in bictcp_acked() argument 447 if (rtt_us < 0) in bictcp_acked() 454 delay = (rtt_us << 3) / USEC_PER_MSEC; in bictcp_acked()
|
D | tcp_input.c | 2897 static void tcp_update_rtt_min(struct sock *sk, u32 rtt_us) in tcp_update_rtt_min() argument 2901 struct rtt_meas rttm = { .rtt = (rtt_us ? : 1), .ts = now }; in tcp_update_rtt_min() 2982 long rtt_us = -1L; in tcp_synack_rtt_meas() local 2988 rtt_us = skb_mstamp_us_delta(&now, &tcp_rsk(req)->snt_synack); in tcp_synack_rtt_meas() 2991 tcp_ack_update_rtt(sk, FLAG_SYN_ACKED, rtt_us, -1L, rtt_us); in tcp_synack_rtt_meas()
|
/linux-4.4.14/include/net/ |
D | tcp.h | 872 void (*pkts_acked)(struct sock *sk, u32 num_acked, s32 rtt_us);
|