net/ipv4/tcp_bbr.c
1003
BBR_UNIT :
net/ipv4/tcp_bbr.c
1008
bbr->pacing_gain = BBR_UNIT;
net/ipv4/tcp_bbr.c
1009
bbr->cwnd_gain = BBR_UNIT;
net/ipv4/tcp_bbr.c
155
static const int bbr_high_gain = BBR_UNIT * 2885 / 1000 + 1;
net/ipv4/tcp_bbr.c
159
static const int bbr_drain_gain = BBR_UNIT * 1000 / 2885;
net/ipv4/tcp_bbr.c
161
static const int bbr_cwnd_gain = BBR_UNIT * 2;
net/ipv4/tcp_bbr.c
164
BBR_UNIT * 5 / 4, /* probe for more available bw */
net/ipv4/tcp_bbr.c
165
BBR_UNIT * 3 / 4, /* drain queue and/or yield bw to other flows */
net/ipv4/tcp_bbr.c
166
BBR_UNIT, BBR_UNIT, BBR_UNIT, /* cruise at 1.0*bw to utilize pipe, */
net/ipv4/tcp_bbr.c
167
BBR_UNIT, BBR_UNIT, BBR_UNIT /* without creating excess queue... */
net/ipv4/tcp_bbr.c
180
static const u32 bbr_full_bw_thresh = BBR_UNIT * 5 / 4;
net/ipv4/tcp_bbr.c
190
static const u32 bbr_lt_bw_ratio = BBR_UNIT / 8;
net/ipv4/tcp_bbr.c
197
static const int bbr_extra_acked_gain = BBR_UNIT;
net/ipv4/tcp_bbr.c
346
bbr_set_pacing_rate(sk, bbr_bw(sk), BBR_UNIT);
net/ipv4/tcp_bbr.c
450
if (bbr->pacing_gain > BBR_UNIT) /* increasing inflight */
net/ipv4/tcp_bbr.c
568
if (bbr->pacing_gain == BBR_UNIT)
net/ipv4/tcp_bbr.c
579
if (bbr->pacing_gain > BBR_UNIT)
net/ipv4/tcp_bbr.c
589
inflight <= bbr_inflight(sk, bw, BBR_UNIT);
net/ipv4/tcp_bbr.c
667
if ((diff * BBR_UNIT <= bbr_lt_bw_ratio * bbr->lt_bw) ||
net/ipv4/tcp_bbr.c
668
(bbr_rate_bytes_per_sec(sk, diff, BBR_UNIT) <=
net/ipv4/tcp_bbr.c
673
bbr->pacing_gain = BBR_UNIT; /* try to avoid drops */
net/ipv4/tcp_bbr.c
901
bbr_inflight(sk, bbr_max_bw(sk), BBR_UNIT));
net/ipv4/tcp_bbr.c
905
bbr_inflight(sk, bbr_max_bw(sk), BBR_UNIT))