Home
last modified time | relevance | path

Searched refs:base_rtt (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/net/ipv4/
H A Dtcp_illinois.c47 u32 base_rtt; /* min of all rtt in usec */ member
75 ca->base_rtt = 0x7fffffff; in tcp_illinois_init()
102 if (ca->base_rtt > rtt_us) in tcp_illinois_acked()
103 ca->base_rtt = rtt_us; in tcp_illinois_acked()
116 return ca->max_rtt - ca->base_rtt; in max_delay()
125 return t - ca->base_rtt; in avg_delay()
315 info->vegas.tcpv_minrtt = ca->base_rtt; in tcp_illinois_info()
H A Dtcp_nv.c140 int base_rtt; in tcpnv_init() local
149 base_rtt = tcp_call_bpf(sk, BPF_SOCK_OPS_BASE_RTT, 0, NULL); in tcpnv_init()
150 if (base_rtt > 0) { in tcpnv_init()
151 ca->nv_base_rtt = base_rtt; in tcpnv_init()
152 ca->nv_lower_bound_rtt = (base_rtt * 205) >> 8; /* 80% */ in tcpnv_init()