Home
last modified time | relevance | path

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

/net/ipv4/
Dtcp_bbr.c242 static u64 bbr_rate_bytes_per_sec(struct sock *sk, u64 rate, int gain) in bbr_rate_bytes_per_sec() argument
247 rate *= gain; in bbr_rate_bytes_per_sec()
254 static unsigned long bbr_bw_to_pacing_rate(struct sock *sk, u32 bw, int gain) in bbr_bw_to_pacing_rate() argument
258 rate = bbr_rate_bytes_per_sec(sk, rate, gain); in bbr_bw_to_pacing_rate()
283 static void bbr_set_pacing_rate(struct sock *sk, u32 bw, int gain) in bbr_set_pacing_rate() argument
287 unsigned long rate = bbr_bw_to_pacing_rate(sk, bw, gain); in bbr_set_pacing_rate()
357 static u32 bbr_bdp(struct sock *sk, u32 bw, int gain) in bbr_bdp() argument
377 bdp = (((w * gain) >> BBR_SCALE) + BW_UNIT - 1) / BW_UNIT; in bbr_bdp()
410 static u32 bbr_inflight(struct sock *sk, u32 bw, int gain) in bbr_inflight() argument
414 inflight = bbr_bdp(sk, bw, gain); in bbr_inflight()
[all …]