of_graph: add of_graph_get_port_parent()
[linux-2.6/btrfs-unstable.git] / include / linux / skb_array.h
blobf4dfade428f0c85f28956476512f28aa74328b08
1 /*
2 * Definitions for the 'struct skb_array' datastructure.
4 * Author:
5 * Michael S. Tsirkin <mst@redhat.com>
7 * Copyright (C) 2016 Red Hat, Inc.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 * Limited-size FIFO of skbs. Can be used more or less whenever
15 * sk_buff_head can be used, except you need to know the queue size in
16 * advance.
17 * Implemented as a type-safe wrapper around ptr_ring.
20 #ifndef _LINUX_SKB_ARRAY_H
21 #define _LINUX_SKB_ARRAY_H 1
23 #ifdef __KERNEL__
24 #include <linux/ptr_ring.h>
25 #include <linux/skbuff.h>
26 #include <linux/if_vlan.h>
27 #endif
29 struct skb_array {
30 struct ptr_ring ring;
33 /* Might be slightly faster than skb_array_full below, but callers invoking
34 * this in a loop must use a compiler barrier, for example cpu_relax().
36 static inline bool __skb_array_full(struct skb_array *a)
38 return __ptr_ring_full(&a->ring);
41 static inline bool skb_array_full(struct skb_array *a)
43 return ptr_ring_full(&a->ring);
46 static inline int skb_array_produce(struct skb_array *a, struct sk_buff *skb)
48 return ptr_ring_produce(&a->ring, skb);
51 static inline int skb_array_produce_irq(struct skb_array *a, struct sk_buff *skb)
53 return ptr_ring_produce_irq(&a->ring, skb);
56 static inline int skb_array_produce_bh(struct skb_array *a, struct sk_buff *skb)
58 return ptr_ring_produce_bh(&a->ring, skb);
61 static inline int skb_array_produce_any(struct skb_array *a, struct sk_buff *skb)
63 return ptr_ring_produce_any(&a->ring, skb);
66 /* Might be slightly faster than skb_array_empty below, but only safe if the
67 * array is never resized. Also, callers invoking this in a loop must take care
68 * to use a compiler barrier, for example cpu_relax().
70 static inline bool __skb_array_empty(struct skb_array *a)
72 return !__ptr_ring_peek(&a->ring);
75 static inline bool skb_array_empty(struct skb_array *a)
77 return ptr_ring_empty(&a->ring);
80 static inline bool skb_array_empty_bh(struct skb_array *a)
82 return ptr_ring_empty_bh(&a->ring);
85 static inline bool skb_array_empty_irq(struct skb_array *a)
87 return ptr_ring_empty_irq(&a->ring);
90 static inline bool skb_array_empty_any(struct skb_array *a)
92 return ptr_ring_empty_any(&a->ring);
95 static inline struct sk_buff *skb_array_consume(struct skb_array *a)
97 return ptr_ring_consume(&a->ring);
100 static inline struct sk_buff *skb_array_consume_irq(struct skb_array *a)
102 return ptr_ring_consume_irq(&a->ring);
105 static inline struct sk_buff *skb_array_consume_any(struct skb_array *a)
107 return ptr_ring_consume_any(&a->ring);
110 static inline struct sk_buff *skb_array_consume_bh(struct skb_array *a)
112 return ptr_ring_consume_bh(&a->ring);
115 static inline int __skb_array_len_with_tag(struct sk_buff *skb)
117 if (likely(skb)) {
118 int len = skb->len;
120 if (skb_vlan_tag_present(skb))
121 len += VLAN_HLEN;
123 return len;
124 } else {
125 return 0;
129 static inline int skb_array_peek_len(struct skb_array *a)
131 return PTR_RING_PEEK_CALL(&a->ring, __skb_array_len_with_tag);
134 static inline int skb_array_peek_len_irq(struct skb_array *a)
136 return PTR_RING_PEEK_CALL_IRQ(&a->ring, __skb_array_len_with_tag);
139 static inline int skb_array_peek_len_bh(struct skb_array *a)
141 return PTR_RING_PEEK_CALL_BH(&a->ring, __skb_array_len_with_tag);
144 static inline int skb_array_peek_len_any(struct skb_array *a)
146 return PTR_RING_PEEK_CALL_ANY(&a->ring, __skb_array_len_with_tag);
149 static inline int skb_array_init(struct skb_array *a, int size, gfp_t gfp)
151 return ptr_ring_init(&a->ring, size, gfp);
154 static void __skb_array_destroy_skb(void *ptr)
156 kfree_skb(ptr);
159 static inline int skb_array_resize(struct skb_array *a, int size, gfp_t gfp)
161 return ptr_ring_resize(&a->ring, size, gfp, __skb_array_destroy_skb);
164 static inline int skb_array_resize_multiple(struct skb_array **rings,
165 int nrings, int size, gfp_t gfp)
167 BUILD_BUG_ON(offsetof(struct skb_array, ring));
168 return ptr_ring_resize_multiple((struct ptr_ring **)rings,
169 nrings, size, gfp,
170 __skb_array_destroy_skb);
173 static inline void skb_array_cleanup(struct skb_array *a)
175 ptr_ring_cleanup(&a->ring, __skb_array_destroy_skb);
178 #endif /* _LINUX_SKB_ARRAY_H */