tcp_packets_in_flight
tcp_packets_in_flight(tp) < tcp_snd_cwnd(tp) &&
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
cwnd = tcp_packets_in_flight(tp) + acked;
*new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
bbr_packets_in_net_at_edt(sk, tcp_packets_in_flight(tcp_sk(sk))) <=
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
tcp_packets_in_flight(tp) <= bbr_cwnd_min_target) {
WARN_ON((int)tcp_packets_in_flight(tp) < 0);
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + 1);
int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp);
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt);
rs.prior_in_flight = tcp_packets_in_flight(tp);
if (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp))
tcp_snd_cwnd(tp) > tcp_packets_in_flight(tp)) {
if (tcp_packets_in_flight(tp) == 0)
in_flight = tcp_packets_in_flight(tp);
in_flight = tcp_packets_in_flight(tp);
if (tcp_packets_in_flight(tp) + 2 > tcp_snd_cwnd(tp)) {
if (!tcp_packets_in_flight(tp))
is_cwnd_limited |= (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp));
segs = tcp_snd_cwnd(tp) - tcp_packets_in_flight(tp);
prior_inflight = tcp_packets_in_flight(tp);
if (prior_inflight != tcp_packets_in_flight(tp)) {
tp->app_limited = (tp->delivered + tcp_packets_in_flight(tp)) ?: 1;