tcp: consume incoming buffers instead of reusing 33/15733/12
authorFlorin Coras <fcoras@cisco.com>
Mon, 5 Nov 2018 23:57:21 +0000 (15:57 -0800)
committerDamjan Marion <dmarion@me.com>
Wed, 7 Nov 2018 13:26:12 +0000 (13:26 +0000)
commit7ac053b27fee8f9e437cf7b61357943356381061
treef0a844206701bef79107626312e5e31e383423c1
parentf5942d5612d99c5ea1189cb9f8de6b6097b0456e
tcp: consume incoming buffers instead of reusing

Instead of reusing buffers for acking, consume all buffers and program
output for (dup)ack generation. This implicitly fixes the drop counters
that were artificially inflated by both data and feedback traffic.

Moreover, the patch also significantly reduces the ack traffic as we now
only generate an ack per frame, unless duplicate acks need to be sent.

Because of the reduced feedback traffic, a sender's rx path and a
receiver's tx path are now significantly less loaded. In particular, a
sender can overwhelm a 40Gbps NIC and generate tx drop bursts for low
rtts. Consequently, tx pacing is now enforced by default.

Change-Id: I619c29a8945bf26c093f8f9e197e3c6d5d43868e
Signed-off-by: Florin Coras <fcoras@cisco.com>
src/vnet/session/session.h
src/vnet/session/session_node.c
src/vnet/session/transport.c
src/vnet/tcp/tcp.c
src/vnet/tcp/tcp.h
src/vnet/tcp/tcp_input.c
src/vnet/tcp/tcp_output.c