diff options
author | David S. Miller <davem@davemloft.net> | 2018-07-14 04:30:19 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-14 04:30:19 +0300 |
commit | 6bed5e260709897cf918ca262b8e68a17227ec4b (patch) | |
tree | e2c8dcd7afb92e790d652b6d096cafe837946faa /include | |
parent | 5fc853cc01c68f84984ecc2d5fd777ecad78240f (diff) | |
parent | a69258f7aa2623e0930212f09c586fd06674ad79 (diff) | |
download | linux-6bed5e260709897cf918ca262b8e68a17227ec4b.tar.xz |
Merge branch 'fix-DCTCP-delayed-ACK'
Yuchung Cheng says:
====================
fix DCTCP delayed ACK
This patch series addresses the issue that sometimes DCTCP
fail to acknowledge the latest sequence and result in sender timeout
if inflight is small.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index af3ec72d5d41..3482d13d655b 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -912,8 +912,6 @@ enum tcp_ca_event { CA_EVENT_LOSS, /* loss timeout */ CA_EVENT_ECN_NO_CE, /* ECT set, but not CE marked */ CA_EVENT_ECN_IS_CE, /* received CE marked IP packet */ - CA_EVENT_DELAYED_ACK, /* Delayed ack is sent */ - CA_EVENT_NON_DELAYED_ACK, }; /* Information about inbound ACK, passed to cong_ops->in_ack_event() */ |