]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'tcp-new-mechanism-to-ACK-immediately'
authorDavid S. Miller <davem@davemloft.net>
Sat, 11 Aug 2018 18:31:36 +0000 (11:31 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 11 Aug 2018 18:31:36 +0000 (11:31 -0700)
commite6c9f01f43d9e54ac66c2f4c022ab64b4d55e8c2
tree409e7e277b55816d4afd45263fb45146c07e02bb
parent563547c65460d4b76aa7b967e1825031af5dbd7e
parenta921388fb2a6d14bc1169121fb4673daa82418d8
Merge branch 'tcp-new-mechanism-to-ACK-immediately'

Yuchung Cheng says:

====================
tcp: new mechanism to ACK immediately

This patch is a follow-up feature improvement to the recent fixes on
the performance issues in ECN (delayed) ACKs. Many of the fixes use
tcp_enter_quickack_mode routine to force immediate ACKs. However the
routine also reset tracking interactive session. This is not ideal
because these immediate ACKs are required by protocol specifics
unrelated to the interactiveness nature of the application.

This patch set introduces a new flag to send a one-time immediate ACK
without changing the status of interactive session tracking. With this
patch set the immediate ACKs are generated upon these protocol states:

1) When a hole is repaired
2) When CE status changes between subsequent data packets received
3) When a data packet carries CWR flag
====================

Signed-off-by: David S. Miller <davem@davemloft.net>