mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
[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 <ilpo.jarvinen@helsinki.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b5860bbac7
commit
83ae40885f
2 changed files with 8 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue