Symbol: tcp_packets_in_flight
net/ipv4/tcp.c
1108
tcp_packets_in_flight(tp) < tcp_snd_cwnd(tp) &&
net/ipv4/tcp.c
1112
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
net/ipv4/tcp_bbr.c
501
cwnd = tcp_packets_in_flight(tp) + acked;
net/ipv4/tcp_bbr.c
510
*new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
net/ipv4/tcp_bbr.c
904
bbr_packets_in_net_at_edt(sk, tcp_packets_in_flight(tcp_sk(sk))) <=
net/ipv4/tcp_bbr.c
968
(tp->delivered + tcp_packets_in_flight(tp)) ? : 1;
net/ipv4/tcp_bbr.c
971
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
2574
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + 1);
net/ipv4/tcp_input.c
2989
int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp);
net/ipv4/tcp_input.c
3010
tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt);
net/ipv4/tcp_input.c
4341
rs.prior_in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_input.c
6069
if (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp))
net/ipv4/tcp_output.c
1279
tcp_snd_cwnd(tp) > tcp_packets_in_flight(tp)) {
net/ipv4/tcp_output.c
185
if (tcp_packets_in_flight(tp) == 0)
net/ipv4/tcp_output.c
2328
in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_output.c
2477
in_flight = tcp_packets_in_flight(tp);
net/ipv4/tcp_output.c
2740
if (tcp_packets_in_flight(tp) + 2 > tcp_snd_cwnd(tp)) {
net/ipv4/tcp_output.c
2741
if (!tcp_packets_in_flight(tp))
net/ipv4/tcp_output.c
3083
is_cwnd_limited |= (tcp_packets_in_flight(tp) >= tcp_snd_cwnd(tp));
net/ipv4/tcp_output.c
3751
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;