aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_output.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_output.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_output.c')
-rw-r--r--net/ipv4/tcp_output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index cbe8bf6dab5f..f46d24b8410f 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -687,7 +687,7 @@ int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, unsigned int mss
687 687
688 BUG_ON(len > skb->len); 688 BUG_ON(len > skb->len);
689 689
690 clear_all_retrans_hints(tp); 690 tcp_clear_all_retrans_hints(tp);
691 nsize = skb_headlen(skb) - len; 691 nsize = skb_headlen(skb) - len;
692 if (nsize < 0) 692 if (nsize < 0)
693 nsize = 0; 693 nsize = 0;
@@ -1719,7 +1719,7 @@ static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *skb, int m
1719 tcp_skb_pcount(next_skb) != 1); 1719 tcp_skb_pcount(next_skb) != 1);
1720 1720
1721 /* changing transmit queue under us so clear hints */ 1721 /* changing transmit queue under us so clear hints */
1722 clear_all_retrans_hints(tp); 1722 tcp_clear_all_retrans_hints(tp);
1723 1723
1724 /* Ok. We will be able to collapse the packet. */ 1724 /* Ok. We will be able to collapse the packet. */
1725 tcp_unlink_write_queue(next_skb, sk); 1725 tcp_unlink_write_queue(next_skb, sk);
@@ -1792,7 +1792,7 @@ void tcp_simple_retransmit(struct sock *sk)
1792 } 1792 }
1793 } 1793 }
1794 1794
1795 clear_all_retrans_hints(tp); 1795 tcp_clear_all_retrans_hints(tp);
1796 1796
1797 if (!lost) 1797 if (!lost)
1798 return; 1798 return;