aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>2007-09-20 14:30:48 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:52:09 -0400
commit5af4ec236f7c98f3671fb26731457a172d85e0e6 (patch)
tree04219129f5db8662c4a876e0f686e7a56fb4459c /net/ipv4/tcp_input.c
parent91fed7a15c9222af29a653ecb0ee72cff178fdd8 (diff)
[TCP]: clear_all_retrans_hints prefixed by tcp_
In addition, fix its function comment spacing. Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r--net/ipv4/tcp_input.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 46aedd6ca020..31e7e339b567 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1667,7 +1667,7 @@ static void tcp_enter_frto_loss(struct sock *sk, int allowed_segments, int flag)
1667 tp->high_seq = tp->frto_highmark; 1667 tp->high_seq = tp->frto_highmark;
1668 TCP_ECN_queue_cwr(tp); 1668 TCP_ECN_queue_cwr(tp);
1669 1669
1670 clear_all_retrans_hints(tp); 1670 tcp_clear_all_retrans_hints(tp);
1671} 1671}
1672 1672
1673void tcp_clear_retrans(struct tcp_sock *tp) 1673void tcp_clear_retrans(struct tcp_sock *tp)
@@ -1738,7 +1738,7 @@ void tcp_enter_loss(struct sock *sk, int how)
1738 /* Abort FRTO algorithm if one is in progress */ 1738 /* Abort FRTO algorithm if one is in progress */
1739 tp->frto_counter = 0; 1739 tp->frto_counter = 0;
1740 1740
1741 clear_all_retrans_hints(tp); 1741 tcp_clear_all_retrans_hints(tp);
1742} 1742}
1743 1743
1744static int tcp_check_sack_reneging(struct sock *sk) 1744static int tcp_check_sack_reneging(struct sock *sk)
@@ -2103,7 +2103,7 @@ static void tcp_undo_cwr(struct sock *sk, const int undo)
2103 2103
2104 /* There is something screwy going on with the retrans hints after 2104 /* There is something screwy going on with the retrans hints after
2105 an undo */ 2105 an undo */
2106 clear_all_retrans_hints(tp); 2106 tcp_clear_all_retrans_hints(tp);
2107} 2107}
2108 2108
2109static inline int tcp_may_undo(struct tcp_sock *tp) 2109static inline int tcp_may_undo(struct tcp_sock *tp)
@@ -2196,7 +2196,7 @@ static int tcp_try_undo_loss(struct sock *sk)
2196 TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST; 2196 TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
2197 } 2197 }
2198 2198
2199 clear_all_retrans_hints(tp); 2199 tcp_clear_all_retrans_hints(tp);
2200 2200
2201 DBGUNDO(sk, "partial loss"); 2201 DBGUNDO(sk, "partial loss");
2202 tp->lost_out = 0; 2202 tp->lost_out = 0;
@@ -2656,7 +2656,7 @@ static int tcp_clean_rtx_queue(struct sock *sk, __s32 *seq_rtt_p)
2656 tp->packets_out -= tcp_skb_pcount(skb); 2656 tp->packets_out -= tcp_skb_pcount(skb);
2657 tcp_unlink_write_queue(skb, sk); 2657 tcp_unlink_write_queue(skb, sk);
2658 sk_stream_free_skb(sk, skb); 2658 sk_stream_free_skb(sk, skb);
2659 clear_all_retrans_hints(tp); 2659 tcp_clear_all_retrans_hints(tp);
2660 } 2660 }
2661 2661
2662 if (acked&FLAG_ACKED) { 2662 if (acked&FLAG_ACKED) {