]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: eliminate gap indicator from ACK messages
authorJon Maloy <jon.maloy@ericsson.com>
Mon, 9 Dec 2019 23:52:44 +0000 (00:52 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Dec 2019 01:31:15 +0000 (17:31 -0800)
commit4557bbd9723600a843376849136ae655565031e3
treea9cc3f1ee1249054a96403f83b0c552dd5f8094a
parent80c9e8080b76158d549fb2faaed72288f6e5f15f
tipc: eliminate gap indicator from ACK messages

When we increase the link send window we sometimes observe the
following scenario:

1) A packet #N arrives out of order far ahead of a sequence of older
   packets which are still under way. The packet is added to the
   deferred queue.
2) The missing packets arrive in sequence, and for each 16th of them
   an ACK is sent back to the receiver, as it should be.
3) When building those ACK messages, it is checked if there is a gap
   between the link's 'rcv_nxt' and the first packet in the deferred
   queue. This is always the case until packet number #N-1 arrives, and
   a 'gap' indicator is added, effectively turning them into NACK
   messages.
4) When those NACKs arrive at the sender, all the requested
   retransmissions are done, since it is a first-time request.

This sometimes leads to a huge amount of redundant retransmissions,
causing a drop in max throughput. This problem gets worse when we
in a later commit introduce variable window congestion control,
since it drops the link back to 'fast recovery' much more often
than necessary.

We now fix this by not sending any 'gap' indicator in regular ACK
messages. We already have a mechanism for sending explicit NACKs
in place, and this is sufficient to keep up the packet flow.

Acked-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/link.c