From: David S. Miller Date: Tue, 23 Sep 2008 07:34:37 +0000 (-0700) Subject: tcp: Use skb_queue_is_last() instead of by-hand version. X-Git-Tag: v2.6.28-rc1~717^2~207 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=d258b4914bcda9177bcc7bbd8e1a97b281b460af;p=linux-2.6-omap-h63xx.git tcp: Use skb_queue_is_last() instead of by-hand version. Signed-off-by: David S. Miller --- diff --git a/include/net/tcp.h b/include/net/tcp.h index f857c3eff71..5c5327e9a55 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -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); } -static inline int tcp_skb_is_last(const struct sock *sk, - const struct sk_buff *skb) +static inline bool tcp_skb_is_last(const struct sock *sk, + 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)