aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h26
1 files changed, 23 insertions, 3 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index db10335e4192..42edce6abe23 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -162,6 +162,13 @@ struct skb_timeval {
162 u32 off_usec; 162 u32 off_usec;
163}; 163};
164 164
165
166enum {
167 SKB_FCLONE_UNAVAILABLE,
168 SKB_FCLONE_ORIG,
169 SKB_FCLONE_CLONE,
170};
171
165/** 172/**
166 * struct sk_buff - socket buffer 173 * struct sk_buff - socket buffer
167 * @next: Next buffer in list 174 * @next: Next buffer in list
@@ -255,7 +262,8 @@ struct sk_buff {
255 ip_summed:2, 262 ip_summed:2,
256 nohdr:1, 263 nohdr:1,
257 nfctinfo:3; 264 nfctinfo:3;
258 __u8 pkt_type; 265 __u8 pkt_type:3,
266 fclone:2;
259 __be16 protocol; 267 __be16 protocol;
260 268
261 void (*destructor)(struct sk_buff *skb); 269 void (*destructor)(struct sk_buff *skb);
@@ -295,8 +303,20 @@ struct sk_buff {
295#include <asm/system.h> 303#include <asm/system.h>
296 304
297extern void __kfree_skb(struct sk_buff *skb); 305extern void __kfree_skb(struct sk_buff *skb);
298extern struct sk_buff *alloc_skb(unsigned int size, 306extern struct sk_buff *__alloc_skb(unsigned int size,
299 unsigned int __nocast priority); 307 unsigned int __nocast priority, int fclone);
308static inline struct sk_buff *alloc_skb(unsigned int size,
309 unsigned int __nocast priority)
310{
311 return __alloc_skb(size, priority, 0);
312}
313
314static inline struct sk_buff *alloc_skb_fclone(unsigned int size,
315 unsigned int __nocast priority)
316{
317 return __alloc_skb(size, priority, 1);
318}
319
300extern struct sk_buff *alloc_skb_from_cache(kmem_cache_t *cp, 320extern struct sk_buff *alloc_skb_from_cache(kmem_cache_t *cp,
301 unsigned int size, 321 unsigned int size,
302 unsigned int __nocast priority); 322 unsigned int __nocast priority);