Home
last modified time | relevance | path

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

/linux-4.4.14/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.c110 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()
Dtcp_cdg.c297 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()
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_vegas.h20 void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us);
Dtcp_yeah.c59 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()
Dtcp_cubic.c440 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()
Dtcp_input.c2897 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/
Dtcp.h872 void (*pkts_acked)(struct sock *sk, u32 num_acked, s32 rtt_us);