Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=de83c058af25aa97ed4864abab11e90e8dead6e2
Commit:     de83c058af25aa97ed4864abab11e90e8dead6e2
Parent:     c79e3357166a2ca39fd7613b0eb7f493c1ac5e11
Author:     Ilpo Järvinen <[EMAIL PROTECTED]>
AuthorDate: Sun Oct 7 23:37:55 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 10 16:54:48 2007 -0700

    [TCP]: "Annotate" another fackets_out state reset
    
    This should no longer be necessary because fackets_out is
    accurate. It indicates bugs elsewhere, thus report it.
    
    Signed-off-by: Ilpo Järvinen <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv4/tcp_input.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 7c1a92f..4268cd1 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1160,7 +1160,8 @@ tcp_sacktag_write_queue(struct sock *sk, struct sk_buff 
*ack_skb, u32 prior_snd_
        int first_sack_index;
 
        if (!tp->sacked_out) {
-               tp->fackets_out = 0;
+               if (WARN_ON(tp->fackets_out))
+                       tp->fackets_out = 0;
                tp->highest_sack = tp->snd_una;
        }
        prior_fackets = tp->fackets_out;
-
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