diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-09-20 14:40:37 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:52:13 -0400 |
commit | 0800f170263d19b882e519441156c5f6ed190fc1 (patch) | |
tree | 09dd9f9405390b969af4ee2fbea411308dcc7582 /include/net/tcp.h | |
parent | b76892051cf1c04d95872838e70146f65e3b9d75 (diff) |
[TCP]: Minor coding style fixup.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 456983d1fcec..92049e681258 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -1067,14 +1067,16 @@ static inline void tcp_mib_init(void) | |||
1067 | } | 1067 | } |
1068 | 1068 | ||
1069 | /* from STCP */ | 1069 | /* from STCP */ |
1070 | static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp) { | 1070 | static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp) |
1071 | { | ||
1071 | tp->lost_skb_hint = NULL; | 1072 | tp->lost_skb_hint = NULL; |
1072 | tp->scoreboard_skb_hint = NULL; | 1073 | tp->scoreboard_skb_hint = NULL; |
1073 | tp->retransmit_skb_hint = NULL; | 1074 | tp->retransmit_skb_hint = NULL; |
1074 | tp->forward_skb_hint = NULL; | 1075 | tp->forward_skb_hint = NULL; |
1075 | } | 1076 | } |
1076 | 1077 | ||
1077 | static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp) { | 1078 | static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp) |
1079 | { | ||
1078 | tcp_clear_retrans_hints_partial(tp); | 1080 | tcp_clear_retrans_hints_partial(tp); |
1079 | tp->fastpath_skb_hint = NULL; | 1081 | tp->fastpath_skb_hint = NULL; |
1080 | } | 1082 | } |