Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=522e7548a9bd40305df41c0beae69448b7620d6b
Commit:     522e7548a9bd40305df41c0beae69448b7620d6b
Parent:     de46c33745f5e2ad594c72f2cf5f490861b16ce1
Author:     Ilpo Järvinen <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 21 22:54:52 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Apr 25 22:23:00 2007 -0700

    [TCP] FRTO: Incorrectly clears TCPCB_EVER_RETRANS bit
    
    FRTO was slightly too brave... Should only clear
    TCPCB_SACKED_RETRANS bit.
    
    Signed-off-by: Ilpo Järvinen <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv4/tcp_input.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 1a14191..b21e232 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1266,7 +1266,7 @@ void tcp_enter_frto(struct sock *sk)
        tp->undo_retrans = 0;
 
        sk_stream_for_retrans_queue(skb, sk) {
-               TCP_SKB_CB(skb)->sacked &= ~TCPCB_RETRANS;
+               TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
        }
        tcp_sync_left_out(tp);
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to