aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/tcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 064c92fe00d2..b92bdc7c92a9 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -758,8 +758,8 @@ static inline __u32 tcp_current_ssthresh(const struct sock *sk)
758 (tp->snd_cwnd >> 2))); 758 (tp->snd_cwnd >> 2)));
759} 759}
760 760
761/* Use define here intentionally to get BUG_ON location shown at the caller */ 761/* Use define here intentionally to get WARN_ON location shown at the caller */
762#define tcp_verify_left_out(tp) BUG_ON(tcp_left_out(tp) > tp->packets_out) 762#define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out)
763 763
764extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh); 764extern void tcp_enter_cwr(struct sock *sk, const int set_ssthresh);
765extern __u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst); 765extern __u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst);