diff options
| author | Ilpo Järvinen <[email protected]> | 2007-08-09 11:37:30 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2007-10-10 23:47:56 +0000 |
| commit | 83ae40885f33e406c87c86b0bd4b6fd31a741f12 (patch) | |
| tree | 659de08c231db85ec46f0c3bc1b86252a6561e21 /net/ipv4/tcp_input.c | |
| parent | [TCP]: Tighten tcp_sock's belt, drop left_out (diff) | |
| download | kernel-83ae40885f33e406c87c86b0bd4b6fd31a741f12.tar.gz kernel-83ae40885f33e406c87c86b0bd4b6fd31a741f12.zip | |
[TCP]: Add tcp_left_out(tp) "back" to get cleaner looking lines
tp->left_out got removed but nothing came to replace it back
then (users just did addition by themselves), so add function
for users now.
Signed-off-by: Ilpo Järvinen <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_input.c')
| -rw-r--r-- | 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 957e0fb8afb7..6bdd053e252f 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -1969,7 +1969,7 @@ static void DBGUNDO(struct sock *sk, const char *msg) printk(KERN_DEBUG "Undo %s %u.%u.%u.%u/%u c%u l%u ss%u/%u p%u\n", msg, NIPQUAD(inet->daddr), ntohs(inet->dport), - tp->snd_cwnd, tp->sacked_out + tp->lost_out, + tp->snd_cwnd, tcp_left_out(tp), tp->snd_ssthresh, tp->prior_ssthresh, tp->packets_out); } |
