From: Ilpo Järvinen Date: Sat, 7 Jul 2007 10:39:02 +0000 (+0300) Subject: [TCP]: Keep state in Disorder also if only lost_out > 0 X-Git-Tag: v2.6.24-rc1~1454^2~819 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d02596e32925edaeccee0af8eb6c229b5615de42;p=~shefty%2Frdma-dev.git [TCP]: Keep state in Disorder also if only lost_out > 0 This happens rather infrequently and is only possible during FRTO. We must not allow TCP to slip to Open state because tcp_fastretrans_alert might then not be called on it's time when FRTO has exited. This become a problem when left_out got removed and was replaced by just sacked_out. Signed-off-by: Ilpo Järvinen Signed-off-by: David S. Miller --- diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 93823b83522..bf4fc3516fb 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -2134,7 +2134,7 @@ static void tcp_try_to_open(struct sock *sk, int flag) if (inet_csk(sk)->icsk_ca_state != TCP_CA_CWR) { int state = TCP_CA_Open; - if (tp->sacked_out || tp->retrans_out || tp->undo_marker) + if (tcp_left_out(tp) || tp->retrans_out || tp->undo_marker) state = TCP_CA_Disorder; if (inet_csk(sk)->icsk_ca_state != state) {