From: Florin Coras Date: Wed, 11 Sep 2019 20:42:57 +0000 (-0700) Subject: tcp: use rate sample rtt in recovery if possible X-Git-Tag: v20.05-rc0~839 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F22004%2F3;p=vpp.git tcp: use rate sample rtt in recovery if possible If in recovery and rate samples are taken for burts that have not been retransmitted, use the rtt estimate. Type: feature Change-Id: I95028f492008457c959157aa4ee4c3435fa9c3f0 Signed-off-by: Florin Coras --- diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index f4e1026e4c5..ad937e90438 100755 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -494,14 +494,20 @@ tcp_update_rto (tcp_connection_t * tc) * return 1 if valid rtt 0 otherwise */ static int -tcp_update_rtt (tcp_connection_t * tc, u32 ack) +tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack) { u32 mrtt = 0; /* Karn's rule, part 1. Don't use retransmitted segments to estimate * RTT because they're ambiguous. */ - if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes) + if (tcp_in_cong_recovery (tc)) { + /* Accept rtt estimates for samples that have not been retransmitted */ + if ((tc->flags & TCP_CONN_RATE_SAMPLE) && !(rs->flags & TCP_BTS_IS_RXT)) + { + mrtt = rs->rtt_time * THZ; + goto estimate_rtt; + } if (tcp_in_recovery (tc)) return 0; goto done; @@ -524,6 +530,8 @@ tcp_update_rtt (tcp_connection_t * tc, u32 ack) mrtt = clib_max (now - tc->rcv_opts.tsecr, 1); } +estimate_rtt: + /* Ignore dubious measurements */ if (mrtt == 0 || mrtt > TCP_RTT_MAX) goto done; @@ -1601,15 +1609,15 @@ process_ack: tc->snd_una = vnet_buffer (b)->tcp.ack_number; tcp_validate_txf_size (tc, tc->bytes_acked); + if (tc->flags & TCP_CONN_RATE_SAMPLE) + tcp_bt_sample_delivery_rate (tc, &rs); + if (tc->bytes_acked) { tcp_program_dequeue (wrk, tc); - tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number); + tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number); } - if (tc->flags & TCP_CONN_RATE_SAMPLE) - tcp_bt_sample_delivery_rate (tc, &rs); - TCP_EVT (TCP_EVT_ACK_RCVD, tc); /*