Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[TCP]: Minor coding style fixup.

Signed-off-by: David S. Miller <davem@davemloft.net>

+4 -2
+4 -2
include/net/tcp.h
··· 1067 1067 } 1068 1068 1069 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 1072 tp->lost_skb_hint = NULL; 1072 1073 tp->scoreboard_skb_hint = NULL; 1073 1074 tp->retransmit_skb_hint = NULL; 1074 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 1080 tcp_clear_retrans_hints_partial(tp); 1079 1081 tp->fastpath_skb_hint = NULL; 1080 1082 }