summaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorDavid S. Miller2008-09-23 09:34:07 +0200
committerDavid S. Miller2008-09-23 09:34:07 +0200
commitfc7ebb212d3e51d1188948d975aa93dbb0f58b25 (patch)
treeb4b0c1922e1128626b02482636c767392866b581 /include/linux/skbuff.h
parentusbatm: Use skb_queue_walk_safe() instead of by-hand implementation. (diff)
downloadkernel-qcow2-linux-fc7ebb212d3e51d1188948d975aa93dbb0f58b25.tar.gz
kernel-qcow2-linux-fc7ebb212d3e51d1188948d975aa93dbb0f58b25.tar.xz
kernel-qcow2-linux-fc7ebb212d3e51d1188948d975aa93dbb0f58b25.zip
net: Add skb_queue_is_last().
Several bits of code want to know "is this the last SKB in a queue", and all of them implement this by hand. Provide an common interface to make this check. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 4a144e8d0538..3a5838da160e 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -473,6 +473,19 @@ static inline int skb_queue_empty(const struct sk_buff_head *list)
}
/**
+ * skb_queue_is_last - check if skb is the last entry in the queue
+ * @list: queue head
+ * @skb: buffer
+ *
+ * Returns true if @skb is the last buffer on the list.
+ */
+static inline bool skb_queue_is_last(const struct sk_buff_head *list,
+ const struct sk_buff *skb)
+{
+ return (skb->next == (struct sk_buff *) list);
+}
+
+/**
* skb_get - reference buffer
* @skb: buffer to reference
*