Symbol: tcp_packets_in_flight
net/ipv4/tcp.c
1122
tcp_packets_in_flight(tp) < tcp_snd_cwnd(tp) &&
net/ipv4/tcp.c
1126
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
net/ipv4/tcp_bbr.c
500
cwnd = tcp_packets_in_flight(tp) + acked;
net/ipv4/tcp_bbr.c
509
*new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
net/ipv4/tcp_bbr.c
903
bbr_packets_in_net_at_edt(sk, tcp_packets_in_flight(tcp_sk(sk))) <=
net/ipv4/tcp_bbr.c
967
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
net/ipv4/tcp_bbr.c
970
tcp_packets_in_flight(tp) <= bbr_cwnd_min_target) {
net/ipv4/tcp_input.c
2410
WARN_ON((int)tcp_packets_in_flight(tp) < 0);
net/ipv4/tcp_input.c
2573
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + 1);
net/ipv4/tcp_input.c
2988
int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp);
net/ipv4/tcp_input.c
3009
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt);
net/ipv4/tcp_input.c
4307
rs.prior_in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_input.c
6088
if (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp))
net/ipv4/tcp_output.c
1266
tcp_snd_cwnd(tp) > tcp_packets_in_flight(tp)) {
net/ipv4/tcp_output.c
191
if (tcp_packets_in_flight(tp) == 0)
net/ipv4/tcp_output.c
2307
in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_output.c
2456
in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_output.c
2718
if (tcp_packets_in_flight(tp) + 2 > tcp_snd_cwnd(tp)) {
net/ipv4/tcp_output.c
2719
if (!tcp_packets_in_flight(tp))
net/ipv4/tcp_output.c
3085
is_cwnd_limited |= (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp));
net/ipv4/tcp_output.c
3753
segs = tcp_snd_cwnd(tp) - tcp_packets_in_flight(tp);
net/ipv4/tcp_recovery.c
123
prior_inflight = tcp_packets_in_flight(tp);
net/ipv4/tcp_recovery.c
125
if (prior_inflight != tcp_packets_in_flight(tp)) {
tools/testing/selftests/bpf/progs/tcp_ca_write_sk_pacing.c
41
tp->app_limited = (tp->delivered + tcp_packets_in_flight(tp)) ?: 1;