aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_output.c
diff options
context:
space:
mode:
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>2007-12-31 17:58:00 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:00:26 -0500
commitd436d68630a74ba3c898ff1b53591ddc4eb7f2bf (patch)
tree272aef67b2497d5090cf762bea5a2f2693d33093 /net/ipv4/tcp_output.c
parent409d22b470532cb92b91b9aeb7257357a176b849 (diff)
[TCP]: Remove unnecessary local variable
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r--net/ipv4/tcp_output.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index b3110fc1570..f6d279a95f4 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -995,9 +995,8 @@ unsigned int tcp_current_mss(struct sock *sk, int large_allowed)
995static void tcp_cwnd_validate(struct sock *sk) 995static void tcp_cwnd_validate(struct sock *sk)
996{ 996{
997 struct tcp_sock *tp = tcp_sk(sk); 997 struct tcp_sock *tp = tcp_sk(sk);
998 __u32 packets_out = tp->packets_out;
999 998
1000 if (packets_out >= tp->snd_cwnd) { 999 if (tp->packets_out >= tp->snd_cwnd) {
1001 /* Network is feed fully. */ 1000 /* Network is feed fully. */
1002 tp->snd_cwnd_used = 0; 1001 tp->snd_cwnd_used = 0;
1003 tp->snd_cwnd_stamp = tcp_time_stamp; 1002 tp->snd_cwnd_stamp = tcp_time_stamp;