net/core: fix comment in skb_try_coalesce
[deliverable/linux.git] / net / core / skbuff.c
CommitLineData
1da177e4
LT
1/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
113aa838 4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
5 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
1da177e4
LT
7 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
e005d193
JP
39#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
1da177e4
LT
41#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
fe55f6d5 44#include <linux/kmemcheck.h>
1da177e4
LT
45#include <linux/mm.h>
46#include <linux/interrupt.h>
47#include <linux/in.h>
48#include <linux/inet.h>
49#include <linux/slab.h>
50#include <linux/netdevice.h>
51#ifdef CONFIG_NET_CLS_ACT
52#include <net/pkt_sched.h>
53#endif
54#include <linux/string.h>
55#include <linux/skbuff.h>
9c55e01c 56#include <linux/splice.h>
1da177e4
LT
57#include <linux/cache.h>
58#include <linux/rtnetlink.h>
59#include <linux/init.h>
716ea3a7 60#include <linux/scatterlist.h>
ac45f602 61#include <linux/errqueue.h>
268bb0ce 62#include <linux/prefetch.h>
1da177e4
LT
63
64#include <net/protocol.h>
65#include <net/dst.h>
66#include <net/sock.h>
67#include <net/checksum.h>
68#include <net/xfrm.h>
69
70#include <asm/uaccess.h>
ad8d75ff 71#include <trace/events/skb.h>
51c56b00 72#include <linux/highmem.h>
a1f8e7f7 73
d7e8883c 74struct kmem_cache *skbuff_head_cache __read_mostly;
e18b890b 75static struct kmem_cache *skbuff_fclone_cache __read_mostly;
1da177e4 76
9c55e01c
JA
77static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
78 struct pipe_buffer *buf)
79{
8b9d3728 80 put_page(buf->page);
9c55e01c
JA
81}
82
83static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
84 struct pipe_buffer *buf)
85{
8b9d3728 86 get_page(buf->page);
9c55e01c
JA
87}
88
89static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
90 struct pipe_buffer *buf)
91{
92 return 1;
93}
94
95
96/* Pipe buffer operations for a socket. */
28dfef8f 97static const struct pipe_buf_operations sock_pipe_buf_ops = {
9c55e01c
JA
98 .can_merge = 0,
99 .map = generic_pipe_buf_map,
100 .unmap = generic_pipe_buf_unmap,
101 .confirm = generic_pipe_buf_confirm,
102 .release = sock_pipe_buf_release,
103 .steal = sock_pipe_buf_steal,
104 .get = sock_pipe_buf_get,
105};
106
1da177e4
LT
107/*
108 * Keep out-of-line to prevent kernel bloat.
109 * __builtin_return_address is not used because it is not always
110 * reliable.
111 */
112
113/**
114 * skb_over_panic - private function
115 * @skb: buffer
116 * @sz: size
117 * @here: address
118 *
119 * Out of line support code for skb_put(). Not user callable.
120 */
ccb7c773 121static void skb_over_panic(struct sk_buff *skb, int sz, void *here)
1da177e4 122{
e005d193
JP
123 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
124 __func__, here, skb->len, sz, skb->head, skb->data,
125 (unsigned long)skb->tail, (unsigned long)skb->end,
126 skb->dev ? skb->dev->name : "<NULL>");
1da177e4
LT
127 BUG();
128}
129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
ccb7c773 139static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
1da177e4 140{
e005d193
JP
141 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
142 __func__, here, skb->len, sz, skb->head, skb->data,
143 (unsigned long)skb->tail, (unsigned long)skb->end,
144 skb->dev ? skb->dev->name : "<NULL>");
1da177e4
LT
145 BUG();
146}
147
c93bdd0e
MG
148
149/*
150 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
151 * the caller if emergency pfmemalloc reserves are being used. If it is and
152 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
153 * may be used. Otherwise, the packet data may be discarded until enough
154 * memory is free
155 */
156#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
157 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
158void *__kmalloc_reserve(size_t size, gfp_t flags, int node, unsigned long ip,
159 bool *pfmemalloc)
160{
161 void *obj;
162 bool ret_pfmemalloc = false;
163
164 /*
165 * Try a regular allocation, when that fails and we're not entitled
166 * to the reserves, fail.
167 */
168 obj = kmalloc_node_track_caller(size,
169 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
170 node);
171 if (obj || !(gfp_pfmemalloc_allowed(flags)))
172 goto out;
173
174 /* Try again but now we are using pfmemalloc reserves */
175 ret_pfmemalloc = true;
176 obj = kmalloc_node_track_caller(size, flags, node);
177
178out:
179 if (pfmemalloc)
180 *pfmemalloc = ret_pfmemalloc;
181
182 return obj;
183}
184
1da177e4
LT
185/* Allocate a new skbuff. We do this ourselves so we can fill in a few
186 * 'private' fields and also do memory statistics to find all the
187 * [BEEP] leaks.
188 *
189 */
190
191/**
d179cd12 192 * __alloc_skb - allocate a network buffer
1da177e4
LT
193 * @size: size to allocate
194 * @gfp_mask: allocation mask
c93bdd0e
MG
195 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
196 * instead of head cache and allocate a cloned (child) skb.
197 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
198 * allocations in case the data is required for writeback
b30973f8 199 * @node: numa node to allocate memory on
1da177e4
LT
200 *
201 * Allocate a new &sk_buff. The returned buffer has no headroom and a
94b6042c
BH
202 * tail room of at least size bytes. The object has a reference count
203 * of one. The return is the buffer. On a failure the return is %NULL.
1da177e4
LT
204 *
205 * Buffers may only be allocated from interrupts using a @gfp_mask of
206 * %GFP_ATOMIC.
207 */
dd0fc66f 208struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
c93bdd0e 209 int flags, int node)
1da177e4 210{
e18b890b 211 struct kmem_cache *cache;
4947d3ef 212 struct skb_shared_info *shinfo;
1da177e4
LT
213 struct sk_buff *skb;
214 u8 *data;
c93bdd0e 215 bool pfmemalloc;
1da177e4 216
c93bdd0e
MG
217 cache = (flags & SKB_ALLOC_FCLONE)
218 ? skbuff_fclone_cache : skbuff_head_cache;
219
220 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
221 gfp_mask |= __GFP_MEMALLOC;
8798b3fb 222
1da177e4 223 /* Get the HEAD */
b30973f8 224 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
1da177e4
LT
225 if (!skb)
226 goto out;
ec7d2f2c 227 prefetchw(skb);
1da177e4 228
87fb4b7b
ED
229 /* We do our best to align skb_shared_info on a separate cache
230 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
231 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
232 * Both skb->head and skb_shared_info are cache line aligned.
233 */
bc417e30 234 size = SKB_DATA_ALIGN(size);
87fb4b7b 235 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
c93bdd0e 236 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
1da177e4
LT
237 if (!data)
238 goto nodata;
87fb4b7b
ED
239 /* kmalloc(size) might give us more room than requested.
240 * Put skb_shared_info exactly at the end of allocated zone,
241 * to allow max possible filling before reallocation.
242 */
243 size = SKB_WITH_OVERHEAD(ksize(data));
ec7d2f2c 244 prefetchw(data + size);
1da177e4 245
ca0605a7 246 /*
c8005785
JB
247 * Only clear those fields we need to clear, not those that we will
248 * actually initialise below. Hence, don't put any more fields after
249 * the tail pointer in struct sk_buff!
ca0605a7
ACM
250 */
251 memset(skb, 0, offsetof(struct sk_buff, tail));
87fb4b7b
ED
252 /* Account for allocated memory : skb + skb->head */
253 skb->truesize = SKB_TRUESIZE(size);
c93bdd0e 254 skb->pfmemalloc = pfmemalloc;
1da177e4
LT
255 atomic_set(&skb->users, 1);
256 skb->head = data;
257 skb->data = data;
27a884dc 258 skb_reset_tail_pointer(skb);
4305b541 259 skb->end = skb->tail + size;
19633e12
SH
260#ifdef NET_SKBUFF_DATA_USES_OFFSET
261 skb->mac_header = ~0U;
262#endif
263
4947d3ef
BL
264 /* make sure we initialize shinfo sequentially */
265 shinfo = skb_shinfo(skb);
ec7d2f2c 266 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
4947d3ef 267 atomic_set(&shinfo->dataref, 1);
c2aa3665 268 kmemcheck_annotate_variable(shinfo->destructor_arg);
4947d3ef 269
c93bdd0e 270 if (flags & SKB_ALLOC_FCLONE) {
d179cd12
DM
271 struct sk_buff *child = skb + 1;
272 atomic_t *fclone_ref = (atomic_t *) (child + 1);
1da177e4 273
fe55f6d5
VN
274 kmemcheck_annotate_bitfield(child, flags1);
275 kmemcheck_annotate_bitfield(child, flags2);
d179cd12
DM
276 skb->fclone = SKB_FCLONE_ORIG;
277 atomic_set(fclone_ref, 1);
278
279 child->fclone = SKB_FCLONE_UNAVAILABLE;
c93bdd0e 280 child->pfmemalloc = pfmemalloc;
d179cd12 281 }
1da177e4
LT
282out:
283 return skb;
284nodata:
8798b3fb 285 kmem_cache_free(cache, skb);
1da177e4
LT
286 skb = NULL;
287 goto out;
1da177e4 288}
b4ac530f 289EXPORT_SYMBOL(__alloc_skb);
1da177e4 290
b2b5ce9d
ED
291/**
292 * build_skb - build a network buffer
293 * @data: data buffer provided by caller
d3836f21 294 * @frag_size: size of fragment, or 0 if head was kmalloced
b2b5ce9d
ED
295 *
296 * Allocate a new &sk_buff. Caller provides space holding head and
297 * skb_shared_info. @data must have been allocated by kmalloc()
298 * The return is the new skb buffer.
299 * On a failure the return is %NULL, and @data is not freed.
300 * Notes :
301 * Before IO, driver allocates only data buffer where NIC put incoming frame
302 * Driver should add room at head (NET_SKB_PAD) and
303 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
304 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
305 * before giving packet to stack.
306 * RX rings only contains data buffers, not full skbs.
307 */
d3836f21 308struct sk_buff *build_skb(void *data, unsigned int frag_size)
b2b5ce9d
ED
309{
310 struct skb_shared_info *shinfo;
311 struct sk_buff *skb;
d3836f21 312 unsigned int size = frag_size ? : ksize(data);
b2b5ce9d
ED
313
314 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
315 if (!skb)
316 return NULL;
317
d3836f21 318 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
b2b5ce9d
ED
319
320 memset(skb, 0, offsetof(struct sk_buff, tail));
321 skb->truesize = SKB_TRUESIZE(size);
d3836f21 322 skb->head_frag = frag_size != 0;
b2b5ce9d
ED
323 atomic_set(&skb->users, 1);
324 skb->head = data;
325 skb->data = data;
326 skb_reset_tail_pointer(skb);
327 skb->end = skb->tail + size;
328#ifdef NET_SKBUFF_DATA_USES_OFFSET
329 skb->mac_header = ~0U;
330#endif
331
332 /* make sure we initialize shinfo sequentially */
333 shinfo = skb_shinfo(skb);
334 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
335 atomic_set(&shinfo->dataref, 1);
336 kmemcheck_annotate_variable(shinfo->destructor_arg);
337
338 return skb;
339}
340EXPORT_SYMBOL(build_skb);
341
a1c7fff7
ED
342struct netdev_alloc_cache {
343 struct page *page;
344 unsigned int offset;
540eb7bf 345 unsigned int pagecnt_bias;
a1c7fff7
ED
346};
347static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
348
540eb7bf
AD
349#define NETDEV_PAGECNT_BIAS (PAGE_SIZE / SMP_CACHE_BYTES)
350
c93bdd0e 351static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
6f532612
ED
352{
353 struct netdev_alloc_cache *nc;
354 void *data = NULL;
355 unsigned long flags;
356
357 local_irq_save(flags);
358 nc = &__get_cpu_var(netdev_alloc_cache);
359 if (unlikely(!nc->page)) {
360refill:
c93bdd0e 361 nc->page = alloc_page(gfp_mask);
540eb7bf
AD
362 if (unlikely(!nc->page))
363 goto end;
364recycle:
365 atomic_set(&nc->page->_count, NETDEV_PAGECNT_BIAS);
366 nc->pagecnt_bias = NETDEV_PAGECNT_BIAS;
6f532612
ED
367 nc->offset = 0;
368 }
540eb7bf
AD
369
370 if (nc->offset + fragsz > PAGE_SIZE) {
371 /* avoid unnecessary locked operations if possible */
372 if ((atomic_read(&nc->page->_count) == nc->pagecnt_bias) ||
373 atomic_sub_and_test(nc->pagecnt_bias, &nc->page->_count))
374 goto recycle;
375 goto refill;
6f532612 376 }
540eb7bf
AD
377
378 data = page_address(nc->page) + nc->offset;
379 nc->offset += fragsz;
380 nc->pagecnt_bias--;
381end:
6f532612
ED
382 local_irq_restore(flags);
383 return data;
384}
c93bdd0e
MG
385
386/**
387 * netdev_alloc_frag - allocate a page fragment
388 * @fragsz: fragment size
389 *
390 * Allocates a frag from a page for receive buffer.
391 * Uses GFP_ATOMIC allocations.
392 */
393void *netdev_alloc_frag(unsigned int fragsz)
394{
395 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
396}
6f532612
ED
397EXPORT_SYMBOL(netdev_alloc_frag);
398
8af27456
CH
399/**
400 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
401 * @dev: network device to receive on
402 * @length: length to allocate
403 * @gfp_mask: get_free_pages mask, passed to alloc_skb
404 *
405 * Allocate a new &sk_buff and assign it a usage count of one. The
406 * buffer has unspecified headroom built in. Users should allocate
407 * the headroom they think they need without accounting for the
408 * built in space. The built in space is used for optimisations.
409 *
410 * %NULL is returned if there is no free memory.
411 */
412struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
6f532612 413 unsigned int length, gfp_t gfp_mask)
8af27456 414{
6f532612 415 struct sk_buff *skb = NULL;
a1c7fff7
ED
416 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
417 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
418
310e158c 419 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
c93bdd0e
MG
420 void *data;
421
422 if (sk_memalloc_socks())
423 gfp_mask |= __GFP_MEMALLOC;
424
425 data = __netdev_alloc_frag(fragsz, gfp_mask);
a1c7fff7 426
6f532612
ED
427 if (likely(data)) {
428 skb = build_skb(data, fragsz);
429 if (unlikely(!skb))
430 put_page(virt_to_head_page(data));
a1c7fff7 431 }
a1c7fff7 432 } else {
c93bdd0e
MG
433 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
434 SKB_ALLOC_RX, NUMA_NO_NODE);
a1c7fff7 435 }
7b2e497a 436 if (likely(skb)) {
8af27456 437 skb_reserve(skb, NET_SKB_PAD);
7b2e497a
CH
438 skb->dev = dev;
439 }
8af27456
CH
440 return skb;
441}
b4ac530f 442EXPORT_SYMBOL(__netdev_alloc_skb);
1da177e4 443
654bed16 444void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
50269e19 445 int size, unsigned int truesize)
654bed16
PZ
446{
447 skb_fill_page_desc(skb, i, page, off, size);
448 skb->len += size;
449 skb->data_len += size;
50269e19 450 skb->truesize += truesize;
654bed16
PZ
451}
452EXPORT_SYMBOL(skb_add_rx_frag);
453
27b437c8 454static void skb_drop_list(struct sk_buff **listp)
1da177e4 455{
27b437c8 456 struct sk_buff *list = *listp;
1da177e4 457
27b437c8 458 *listp = NULL;
1da177e4
LT
459
460 do {
461 struct sk_buff *this = list;
462 list = list->next;
463 kfree_skb(this);
464 } while (list);
465}
466
27b437c8
HX
467static inline void skb_drop_fraglist(struct sk_buff *skb)
468{
469 skb_drop_list(&skb_shinfo(skb)->frag_list);
470}
471
1da177e4
LT
472static void skb_clone_fraglist(struct sk_buff *skb)
473{
474 struct sk_buff *list;
475
fbb398a8 476 skb_walk_frags(skb, list)
1da177e4
LT
477 skb_get(list);
478}
479
d3836f21
ED
480static void skb_free_head(struct sk_buff *skb)
481{
482 if (skb->head_frag)
483 put_page(virt_to_head_page(skb->head));
484 else
485 kfree(skb->head);
486}
487
5bba1712 488static void skb_release_data(struct sk_buff *skb)
1da177e4
LT
489{
490 if (!skb->cloned ||
491 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
492 &skb_shinfo(skb)->dataref)) {
493 if (skb_shinfo(skb)->nr_frags) {
494 int i;
495 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
ea2ab693 496 skb_frag_unref(skb, i);
1da177e4
LT
497 }
498
a6686f2f
SM
499 /*
500 * If skb buf is from userspace, we need to notify the caller
501 * the lower device DMA has done;
502 */
503 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
504 struct ubuf_info *uarg;
505
506 uarg = skb_shinfo(skb)->destructor_arg;
507 if (uarg->callback)
508 uarg->callback(uarg);
509 }
510
21dc3301 511 if (skb_has_frag_list(skb))
1da177e4
LT
512 skb_drop_fraglist(skb);
513
d3836f21 514 skb_free_head(skb);
1da177e4
LT
515 }
516}
517
518/*
519 * Free an skbuff by memory without cleaning the state.
520 */
2d4baff8 521static void kfree_skbmem(struct sk_buff *skb)
1da177e4 522{
d179cd12
DM
523 struct sk_buff *other;
524 atomic_t *fclone_ref;
525
d179cd12
DM
526 switch (skb->fclone) {
527 case SKB_FCLONE_UNAVAILABLE:
528 kmem_cache_free(skbuff_head_cache, skb);
529 break;
530
531 case SKB_FCLONE_ORIG:
532 fclone_ref = (atomic_t *) (skb + 2);
533 if (atomic_dec_and_test(fclone_ref))
534 kmem_cache_free(skbuff_fclone_cache, skb);
535 break;
536
537 case SKB_FCLONE_CLONE:
538 fclone_ref = (atomic_t *) (skb + 1);
539 other = skb - 1;
540
541 /* The clone portion is available for
542 * fast-cloning again.
543 */
544 skb->fclone = SKB_FCLONE_UNAVAILABLE;
545
546 if (atomic_dec_and_test(fclone_ref))
547 kmem_cache_free(skbuff_fclone_cache, other);
548 break;
3ff50b79 549 }
1da177e4
LT
550}
551
04a4bb55 552static void skb_release_head_state(struct sk_buff *skb)
1da177e4 553{
adf30907 554 skb_dst_drop(skb);
1da177e4
LT
555#ifdef CONFIG_XFRM
556 secpath_put(skb->sp);
557#endif
9c2b3328
SH
558 if (skb->destructor) {
559 WARN_ON(in_irq());
1da177e4
LT
560 skb->destructor(skb);
561 }
a3bf7ae9 562#if IS_ENABLED(CONFIG_NF_CONNTRACK)
5f79e0f9 563 nf_conntrack_put(skb->nfct);
2fc72c7b
KK
564#endif
565#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
9fb9cbb1
YK
566 nf_conntrack_put_reasm(skb->nfct_reasm);
567#endif
1da177e4
LT
568#ifdef CONFIG_BRIDGE_NETFILTER
569 nf_bridge_put(skb->nf_bridge);
570#endif
1da177e4
LT
571/* XXX: IS this still necessary? - JHS */
572#ifdef CONFIG_NET_SCHED
573 skb->tc_index = 0;
574#ifdef CONFIG_NET_CLS_ACT
575 skb->tc_verd = 0;
1da177e4
LT
576#endif
577#endif
04a4bb55
LB
578}
579
580/* Free everything but the sk_buff shell. */
581static void skb_release_all(struct sk_buff *skb)
582{
583 skb_release_head_state(skb);
2d4baff8
HX
584 skb_release_data(skb);
585}
586
587/**
588 * __kfree_skb - private function
589 * @skb: buffer
590 *
591 * Free an sk_buff. Release anything attached to the buffer.
592 * Clean the state. This is an internal helper function. Users should
593 * always call kfree_skb
594 */
1da177e4 595
2d4baff8
HX
596void __kfree_skb(struct sk_buff *skb)
597{
598 skb_release_all(skb);
1da177e4
LT
599 kfree_skbmem(skb);
600}
b4ac530f 601EXPORT_SYMBOL(__kfree_skb);
1da177e4 602