diff options
| author | Stephen Hemminger <stephen@networkplumber.org> | 2013-02-05 07:25:17 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2013-02-05 14:51:16 -0500 | 
| commit | ca2eb5679f8ddffff60156af42595df44a315ef0 (patch) | |
| tree | e056a2cf5454039f071d47cc919bf73a9bf0c60f /net/ipv4/tcp_minisocks.c | |
| parent | 547472b8e1da72ae226430c0c4273e36fc8ca768 (diff) | |
| download | olio-linux-3.10-ca2eb5679f8ddffff60156af42595df44a315ef0.tar.xz olio-linux-3.10-ca2eb5679f8ddffff60156af42595df44a315ef0.zip  | |
tcp: remove Appropriate Byte Count support
TCP Appropriate Byte Count was added by me, but later disabled.
There is no point in maintaining it since it is a potential source
of bugs and Linux already implements other better window protection
heuristics.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_minisocks.c')
| -rw-r--r-- | net/ipv4/tcp_minisocks.c | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index f35f2dfb640..f0409287b5f 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -446,7 +446,6 @@ struct sock *tcp_create_openreq_child(struct sock *sk, struct request_sock *req,  		 */  		newtp->snd_cwnd = TCP_INIT_CWND;  		newtp->snd_cwnd_cnt = 0; -		newtp->bytes_acked = 0;  		newtp->frto_counter = 0;  		newtp->frto_highmark = 0;  |