diff options
-rw-r--r-- | net/ipv4/tcp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index f6f61b3e677b..2471cd4f66db 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -2065,7 +2065,7 @@ begin_fwd: | |||
2065 | goto begin_fwd; | 2065 | goto begin_fwd; |
2066 | 2066 | ||
2067 | } else if (!(sacked & TCPCB_LOST)) { | 2067 | } else if (!(sacked & TCPCB_LOST)) { |
2068 | if (hole == NULL && !(sacked & TCPCB_SACKED_RETRANS)) | 2068 | if (hole == NULL && !(sacked & (TCPCB_SACKED_RETRANS|TCPCB_SACKED_ACKED))) |
2069 | hole = skb; | 2069 | hole = skb; |
2070 | continue; | 2070 | continue; |
2071 | 2071 | ||