Skip to content

Commit

Permalink
tcp: Remove the unused api
Browse files Browse the repository at this point in the history
Last tcp_write_queue_head() use was removed in commit
114f39f ("tcp: restore autocorking"), so remove it.

Signed-off-by: Tao Chen <chentao3@hotmail.com>
Link: https://lore.kernel.org/r/SYZP282MB33317DEE1253B37C0F57231E86029@SYZP282MB3331.AUSP282.PROD.OUTLOOK.COM
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Tao Chen authored and Jakub Kicinski committed Mar 3, 2022
1 parent bf08824 commit 42f0c19
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/net/tcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -1831,11 +1831,6 @@ static inline struct sk_buff *tcp_rtx_queue_tail(const struct sock *sk)
return skb_rb_last(&sk->tcp_rtx_queue);
}

static inline struct sk_buff *tcp_write_queue_head(const struct sock *sk)
{
return skb_peek(&sk->sk_write_queue);
}

static inline struct sk_buff *tcp_write_queue_tail(const struct sock *sk)
{
return skb_peek_tail(&sk->sk_write_queue);
Expand Down

0 comments on commit 42f0c19

Please sign in to comment.