diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2007-08-09 07:37:30 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:47:56 -0400 |
commit | 83ae40885f33e406c87c86b0bd4b6fd31a741f12 (patch) | |
tree | 659de08c231db85ec46f0c3bc1b86252a6561e21 /include/net | |
parent | b5860bbac7be1381626f3dc8a0cb970a60fcefb4 (diff) |
[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>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/tcp.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 299872d461c7..39d0df6afe47 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -719,6 +719,11 @@ static inline void tcp_ca_event(struct sock *sk, const enum tcp_ca_event event) | |||
719 | icsk->icsk_ca_ops->cwnd_event(sk, event); | 719 | icsk->icsk_ca_ops->cwnd_event(sk, event); |
720 | } | 720 | } |
721 | 721 | ||
722 | static inline unsigned int tcp_left_out(const struct tcp_sock *tp) | ||
723 | { | ||
724 | return tp->sacked_out + tp->lost_out; | ||
725 | } | ||
726 | |||
722 | /* This determines how many packets are "in the network" to the best | 727 | /* This determines how many packets are "in the network" to the best |
723 | * of our knowledge. In many cases it is conservative, but where | 728 | * of our knowledge. In many cases it is conservative, but where |
724 | * detailed information is available from the receiver (via SACK | 729 | * detailed information is available from the receiver (via SACK |
@@ -735,8 +740,7 @@ static inline void tcp_ca_event(struct sock *sk, const enum tcp_ca_event event) | |||
735 | */ | 740 | */ |
736 | static inline unsigned int tcp_packets_in_flight(const struct tcp_sock *tp) | 741 | static inline unsigned int tcp_packets_in_flight(const struct tcp_sock *tp) |
737 | { | 742 | { |
738 | return tp->packets_out - (tp->sacked_out + tp->lost_out) + | 743 | return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; |
739 | tp->retrans_out; | ||
740 | } | 744 | } |
741 | 745 | ||
742 | /* If cwnd > ssthresh, we may raise ssthresh to be half-way to cwnd. | 746 | /* If cwnd > ssthresh, we may raise ssthresh to be half-way to cwnd. |
@@ -756,8 +760,7 @@ static inline __u32 tcp_current_ssthresh(const struct sock *sk) | |||
756 | 760 | ||
757 | static inline void tcp_sync_left_out(struct tcp_sock *tp) | 761 | static inline void tcp_sync_left_out(struct tcp_sock *tp) |
758 | { | 762 | { |
759 | BUG_ON(tp->rx_opt.sack_ok && | 763 | BUG_ON(tp->rx_opt.sack_ok && (tcp_left_out(tp) > tp->packets_out)); |
760 | (tp->sacked_out + tp->lost_out > tp->packets_out)); | ||
761 | } | 764 | } |
762 | 765 | ||
763 | extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh); | 766 | extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh); |