mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
net: skb_array: expose peek API
This adds a peek routine to skb_array.h for use with qdisc. Signed-off-by: John Fastabend <john.fastabend@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ce679e8df7
commit
4a86a4cf68
@ -72,6 +72,11 @@ static inline bool __skb_array_empty(struct skb_array *a)
|
||||
return !__ptr_ring_peek(&a->ring);
|
||||
}
|
||||
|
||||
static inline struct sk_buff *__skb_array_peek(struct skb_array *a)
|
||||
{
|
||||
return __ptr_ring_peek(&a->ring);
|
||||
}
|
||||
|
||||
static inline bool skb_array_empty(struct skb_array *a)
|
||||
{
|
||||
return ptr_ring_empty(&a->ring);
|
||||
|
Loading…
Reference in New Issue
Block a user