|
@@ -3115,6 +3115,7 @@ static int tcp_clean_rtx_queue(struct sock *sk, int prior_fackets,
|
|
|
long ca_rtt_us = -1L;
|
|
|
struct sk_buff *skb;
|
|
|
u32 pkts_acked = 0;
|
|
|
+ u32 last_in_flight = 0;
|
|
|
bool rtt_update;
|
|
|
int flag = 0;
|
|
|
|
|
@@ -3154,6 +3155,7 @@ static int tcp_clean_rtx_queue(struct sock *sk, int prior_fackets,
|
|
|
if (!first_ackt.v64)
|
|
|
first_ackt = last_ackt;
|
|
|
|
|
|
+ last_in_flight = TCP_SKB_CB(skb)->tx.in_flight;
|
|
|
reord = min(pkts_acked, reord);
|
|
|
if (!after(scb->end_seq, tp->high_seq))
|
|
|
flag |= FLAG_ORIG_SACK_ACKED;
|
|
@@ -3250,7 +3252,8 @@ static int tcp_clean_rtx_queue(struct sock *sk, int prior_fackets,
|
|
|
|
|
|
if (icsk->icsk_ca_ops->pkts_acked) {
|
|
|
struct ack_sample sample = { .pkts_acked = pkts_acked,
|
|
|
- .rtt_us = ca_rtt_us };
|
|
|
+ .rtt_us = ca_rtt_us,
|
|
|
+ .in_flight = last_in_flight };
|
|
|
|
|
|
icsk->icsk_ca_ops->pkts_acked(sk, &sample);
|
|
|
}
|