aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorBaruch Even <baruch@ev-en.org>2006-01-30 20:54:39 -0800
committerDavid S. Miller <davem@davemloft.net>2006-01-30 20:54:39 -0800
commit2c74088e4104a2a82bd773f79ae0344c22eceb8c (patch)
tree17d560c7005f28db308bebc51c1d0cf42dee2785 /net
parent[IPV4] igmp: remove pointless printk (diff)
downloadlinux-dev-2c74088e4104a2a82bd773f79ae0344c22eceb8c.tar.xz
linux-dev-2c74088e4104a2a82bd773f79ae0344c22eceb8c.zip
[TCP] H-TCP: Fix accounting
This fixes the accounting in H-TCP, the ccount variable is also adjusted a few lines above this one. This line was not supposed to be there and wasn't there in the patches originally submitted, the four patches submitted were merged to one and in that merge the bug was introduced. Signed-Off-By: Baruch Even <baruch@ev-en.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/tcp_htcp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/tcp_htcp.c b/net/ipv4/tcp_htcp.c
index 3284cfb993e6..128de4d7c0b7 100644
--- a/net/ipv4/tcp_htcp.c
+++ b/net/ipv4/tcp_htcp.c
@@ -230,7 +230,6 @@ static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
if (tp->snd_cwnd < tp->snd_cwnd_clamp)
tp->snd_cwnd++;
tp->snd_cwnd_cnt = 0;
- ca->ccount++;
}
}
}