Commit 0800f170 authored by David S. Miller's avatar David S. Miller

[TCP]: Minor coding style fixup.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b7689205
......@@ -1067,14 +1067,16 @@ static inline void tcp_mib_init(void)
}
/* from STCP */
static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp) {
static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp)
{
tp->lost_skb_hint = NULL;
tp->scoreboard_skb_hint = NULL;
tp->retransmit_skb_hint = NULL;
tp->forward_skb_hint = NULL;
}
static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp) {
static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp)
{
tcp_clear_retrans_hints_partial(tp);
tp->fastpath_skb_hint = NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment