diff options
author | Yuchung Cheng <ycheng@google.com> | 2017-09-18 20:05:16 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-19 02:26:11 +0200 |
commit | 4c7124413aa759b8ea0b90cd39177e525396e662 (patch) | |
tree | 37fe674a307b1674450dc3e2822d0885535beebb /include | |
parent | bpf: devmap: pass on return value of bpf_map_precharge_memlock (diff) | |
download | linux-4c7124413aa759b8ea0b90cd39177e525396e662.tar.xz linux-4c7124413aa759b8ea0b90cd39177e525396e662.zip |
tcp: remove two unused functions
remove tcp_may_send_now and tcp_snd_test that are no longer used
Fixes: 840a3cbe8969 ("tcp: remove forward retransmit feature")
Signed-off-by: Yuchung Cheng <ycheng@google.com>
Signed-off-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/tcp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index b510f284427a..3bc910a9bfc6 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -544,7 +544,6 @@ u32 tcp_tso_autosize(const struct sock *sk, unsigned int mss_now, int min_tso_segs); void __tcp_push_pending_frames(struct sock *sk, unsigned int cur_mss, int nonagle); -bool tcp_may_send_now(struct sock *sk); int __tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb, int segs); int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb, int segs); void tcp_retransmit_timer(struct sock *sk); |