diff options
author | Florin Coras <fcoras@cisco.com> | 2020-01-08 00:33:02 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-01-08 15:32:21 +0000 |
commit | 479f7fec6a876bf06f6007c03fd7b9fa3404df54 (patch) | |
tree | da5a96707433c057ccc9d3d31d56e99cb6b60783 /src/vnet/tcp | |
parent | 42ddf69ed0560cff70a2f3fafc732fc5a33255c0 (diff) |
tcp: fix last sacked with no holes
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id12b0a9b8bc47aef8b393544e5b4c8228ed6a606
Diffstat (limited to 'src/vnet/tcp')
-rwxr-xr-x | src/vnet/tcp/tcp_input.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index ef5a16f22a6..b9df88227b5 100755 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -784,6 +784,8 @@ scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss) if (!right) { sb->sacked_bytes = sb->high_sacked - ack; + sb->last_sacked_bytes = sb->sacked_bytes + - (old_sacked - sb->last_bytes_delivered); return; } |