2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
36 #define get_cpu_var(p) (p)
37 #define __get_cpu_var(p) (p)
38 #define BITS_PER_LONG (sizeof(long) * 8)
39 #define __GFP_BITS_SHIFT 20
40 #define __GFP_BITS_MASK ((int)((1 << __GFP_BITS_SHIFT) - 1))
44 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
47 #define ULONG_MAX (~0UL)
52 #define __force __attribute__((force))
53 #define __bitwise__ __attribute__((bitwise))
60 #include <asm/types.h>
66 typedef unsigned int u32
;
67 typedef unsigned int __u32
;
68 typedef unsigned long long u64
;
69 typedef unsigned char u8
;
70 typedef unsigned short u16
;
74 struct vma_shared
{ int prio_tree_node
; };
75 struct vm_area_struct
{
76 unsigned long vm_pgoff
;
77 unsigned long vm_start
;
79 struct vma_shared shared
;
90 #define mutex_init(m) \
95 static inline void mutex_lock(struct mutex
*m
)
100 static inline void mutex_unlock(struct mutex
*m
)
105 static inline int mutex_is_locked(struct mutex
*m
)
107 return (m
->lock
!= 1);
110 #define cond_resched() do { } while (0)
111 #define preempt_enable() do { } while (0)
112 #define preempt_disable() do { } while (0)
114 #define BITOP_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
115 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
118 * __set_bit - Set a bit in memory
119 * @nr: the bit to set
120 * @addr: the address to start counting from
122 * Unlike set_bit(), this function is non-atomic and may be reordered.
123 * If it's called on the same region of memory simultaneously, the effect
124 * may be that only one operation succeeds.
126 static inline void __set_bit(int nr
, volatile unsigned long *addr
)
128 unsigned long mask
= BITOP_MASK(nr
);
129 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
134 static inline void __clear_bit(int nr
, volatile unsigned long *addr
)
136 unsigned long mask
= BITOP_MASK(nr
);
137 unsigned long *p
= ((unsigned long *)addr
) + BITOP_WORD(nr
);
143 * test_bit - Determine whether a bit is set
144 * @nr: bit number to test
145 * @addr: Address to start counting from
147 static inline int test_bit(int nr
, const volatile unsigned long *addr
)
149 return 1UL & (addr
[BITOP_WORD(nr
)] >> (nr
& (BITS_PER_LONG
-1)));
155 #define MAX_ERRNO 4095
156 #define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)
158 static inline void *ERR_PTR(long error
)
160 return (void *) error
;
163 static inline long PTR_ERR(const void *ptr
)
168 static inline long IS_ERR(const void *ptr
)
170 return IS_ERR_VALUE((unsigned long)ptr
);
176 #define min(x,y) ({ \
177 typeof(x) _x = (x); \
178 typeof(y) _y = (y); \
179 (void) (&_x == &_y); \
180 _x < _y ? _x : _y; })
182 #define max(x,y) ({ \
183 typeof(x) _x = (x); \
184 typeof(y) _y = (y); \
185 (void) (&_x == &_y); \
186 _x > _y ? _x : _y; })
188 #define min_t(type,x,y) \
189 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
190 #define max_t(type,x,y) \
191 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
196 #define printk(fmt, args...) fprintf(stderr, fmt, ##args)
203 #define kmalloc(x, y) malloc(x)
204 #define kzalloc(x, y) calloc(1, x)
205 #define kstrdup(x, y) strdup(x)
206 #define kfree(x) free(x)
208 #define BUG_ON(c) assert(!(c))
209 #define WARN_ON(c) assert(!(c))
212 #ifdef __compiler_offsetof
213 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
215 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
218 #define container_of(ptr, type, member) ({ \
219 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
220 (type *)( (char *)__mptr - offsetof(type,member) );})
222 #define __CHECK_ENDIAN__
223 #define __bitwise __bitwise__
228 typedef u16 __bitwise __le16
;
229 typedef u16 __bitwise __be16
;
230 typedef u32 __bitwise __le32
;
231 typedef u32 __bitwise __be32
;
232 typedef u64 __bitwise __le64
;
233 typedef u64 __bitwise __be64
;
235 /* Macros to generate set/get funcs for the struct fields
236 * assume there is a lefoo_to_cpu for every type, so lets make a simple
239 #define le8_to_cpu(v) (v)
240 #define cpu_to_le8(v) (v)
243 #if __BYTE_ORDER == __BIG_ENDIAN
244 #define cpu_to_le64(x) ((__force __le64)(u64)(bswap_64(x)))
245 #define le64_to_cpu(x) ((__force u64)(__le64)(bswap_64(x)))
246 #define cpu_to_le32(x) ((__force __le32)(u32)(bswap_32(x)))
247 #define le32_to_cpu(x) ((__force u32)(__le32)(bswap_32(x)))
248 #define cpu_to_le16(x) ((__force __le16)(u16)(bswap_16(x)))
249 #define le16_to_cpu(x) ((__force u16)(__le16)(bswap_16(x)))
251 #define cpu_to_le64(x) ((__force __le64)(u64)(x))
252 #define le64_to_cpu(x) ((__force u64)(__le64)(x))
253 #define cpu_to_le32(x) ((__force __le32)(u32)(x))
254 #define le32_to_cpu(x) ((__force u32)(__le32)(x))
255 #define cpu_to_le16(x) ((__force __le16)(u16)(x))
256 #define le16_to_cpu(x) ((__force u16)(__le16)(x))