Commit d258b491 authored by David S. Miller's avatar David S. Miller

tcp: Use skb_queue_is_last() instead of by-hand version.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fc7ebb21
...@@ -1284,10 +1284,10 @@ static inline void tcp_unlink_write_queue(struct sk_buff *skb, struct sock *sk) ...@@ -1284,10 +1284,10 @@ static inline void tcp_unlink_write_queue(struct sk_buff *skb, struct sock *sk)
__skb_unlink(skb, &sk->sk_write_queue); __skb_unlink(skb, &sk->sk_write_queue);
} }
static inline int tcp_skb_is_last(const struct sock *sk, static inline bool tcp_skb_is_last(const struct sock *sk,
const struct sk_buff *skb) const struct sk_buff *skb)
{ {
return skb->next == (struct sk_buff *)&sk->sk_write_queue; return skb_queue_is_last(&sk->sk_write_queue, skb);
} }
static inline int tcp_write_queue_empty(struct sock *sk) static inline int tcp_write_queue_empty(struct sock *sk)
......
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