Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / otus / wrap_buf.c
blob62496a0f8e3fbf16a3395dcb5e07c587470ef968
1 /*
2 * Copyright (c) 2007-2008 Atheros Communications Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 /* */
17 /* Module Name : wrap_buf.c */
18 /* */
19 /* Abstract */
20 /* This module contains wrapper functions for buffer management */
21 /* */
22 /* NOTES */
23 /* Platform dependent. */
24 /* */
25 /************************************************************************/
27 #include "oal_dt.h"
28 #include "usbdrv.h"
31 #include <linux/netlink.h>
33 #if WIRELESS_EXT > 12
34 #include <net/iw_handler.h>
35 #endif
39 /* Called to allocate buffer, must return a continue buffer space */
40 zbuf_t* zfwBufAllocate(zdev_t* dev, u16_t len)
42 zbuf_t* buf;
44 /* Allocate SKB for packet*/
45 buf = dev_alloc_skb(len);
47 return buf;
51 /* Called to free buffer, replace below 3 functions */
52 void zfwBufFree(zdev_t* dev, zbuf_t* buf, u16_t status)
54 dev_kfree_skb_any(buf);
57 /* Called to adjust buffer size and head pointer */
58 u16_t zfwBufRemoveHead(zdev_t* dev, zbuf_t* buf, u16_t size)
60 //zm_assert(buf->len > size);
62 buf->data += size;
63 buf->len -= size;
64 return 0;
70 /* return tail if head==NULL, called to chain multiple buffer together */
71 /* Used to chain Rx buffer to form a frame. if the prepared Rx buffer */
72 /* is greater than an ethernet frame(1518+32 byte), then this function */
73 /* will only be called with head=NULL. */
74 u16_t zfwBufChain(zdev_t* dev, zbuf_t** head, zbuf_t* tail)
77 *head = tail;
78 return 0;
82 /* Called when doing infra-bss forwarding */
83 u16_t zfwBufCopy(zdev_t* dev, zbuf_t* dst, zbuf_t* src)
85 memcpy(dst->data, src->data, src->len);
86 dst->tail = dst->data;
87 skb_put(dst, src->len);
88 return 0;
92 /* Called to adjust buffer size and tail pointer */
93 u16_t zfwBufSetSize(zdev_t* dev, zbuf_t* buf, u16_t size)
95 #ifdef NET_SKBUFF_DATA_USES_OFFSET
96 buf->tail = 0;
97 buf->len = 0;
98 #else
99 buf->tail = buf->data;
100 buf->len = 0;
101 #endif
103 skb_put(buf, size);
104 return 0;
107 u16_t zfwBufGetSize(zdev_t* dev, zbuf_t* buf)
109 return buf->len;
112 void zfwCopyBufContext(zdev_t* dev, zbuf_t* source, zbuf_t* dst)