d60f72222e14b1b455d5fa48a1f10cdd496b0afe
[platform/upstream/btrfs-progs.git] / kerncompat.h
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
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.
7  *
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.
12  *
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.
17  */
18
19 #ifndef __KERNCOMPAT
20 #define __KERNCOMPAT
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <errno.h>
25 #include <string.h>
26 #include <endian.h>
27 #include <byteswap.h>
28 #include <assert.h>
29
30 #ifndef READ
31 #define READ 0
32 #define WRITE 1
33 #define READA 2
34 #endif
35
36 #define gfp_t int
37 #define get_cpu_var(p) (p)
38 #define __get_cpu_var(p) (p)
39 #define BITS_PER_LONG (sizeof(long) * 8)
40 #define __GFP_BITS_SHIFT 20
41 #define __GFP_BITS_MASK ((int)((1 << __GFP_BITS_SHIFT) - 1))
42 #define GFP_KERNEL 0
43 #define GFP_NOFS 0
44 #define __read_mostly
45 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
46
47 #ifndef ULONG_MAX
48 #define ULONG_MAX       (~0UL)
49 #endif
50
51 #define BUG() abort()
52 #ifdef __CHECKER__
53 #define __force    __attribute__((force))
54 #define __bitwise__ __attribute__((bitwise))
55 #else
56 #define __force
57 #define __bitwise__
58 #endif
59
60 #ifndef __CHECKER__
61 /*
62  * Since we're using primitive definitions from kernel-space, we need to
63  * define __KERNEL__ so that system header files know which definitions
64  * to use.
65  */
66 #define __KERNEL__
67 #include <asm/types.h>
68 typedef __u32 u32;
69 typedef __u64 u64;
70 typedef __u16 u16;
71 typedef __u8 u8;
72 /*
73  * Continuing to define __KERNEL__ breaks others parts of the code, so
74  * we can just undefine it now that we have the correct headers...
75  */
76 #undef __KERNEL__
77 #else
78 typedef unsigned int u32;
79 typedef unsigned int __u32;
80 typedef unsigned long long u64;
81 typedef unsigned char u8;
82 typedef unsigned short u16;
83 #endif
84
85
86 struct vma_shared { int prio_tree_node; };
87 struct vm_area_struct {
88         unsigned long vm_pgoff;
89         unsigned long vm_start;
90         unsigned long vm_end;
91         struct vma_shared shared;
92 };
93
94 struct page {
95         unsigned long index;
96 };
97
98 struct mutex {
99         unsigned long lock;
100 };
101
102 #define mutex_init(m)                                           \
103 do {                                                            \
104         (m)->lock = 1;                                          \
105 } while (0)
106
107 static inline void mutex_lock(struct mutex *m)
108 {
109         m->lock--;
110 }
111
112 static inline void mutex_unlock(struct mutex *m)
113 {
114         m->lock++;
115 }
116
117 static inline int mutex_is_locked(struct mutex *m)
118 {
119         return (m->lock != 1);
120 }
121
122 #define cond_resched()          do { } while (0)
123 #define preempt_enable()        do { } while (0)
124 #define preempt_disable()       do { } while (0)
125
126 #define BITOP_MASK(nr)          (1UL << ((nr) % BITS_PER_LONG))
127 #define BITOP_WORD(nr)          ((nr) / BITS_PER_LONG)
128
129 /**
130  * __set_bit - Set a bit in memory
131  * @nr: the bit to set
132  * @addr: the address to start counting from
133  *
134  * Unlike set_bit(), this function is non-atomic and may be reordered.
135  * If it's called on the same region of memory simultaneously, the effect
136  * may be that only one operation succeeds.
137  */
138 static inline void __set_bit(int nr, volatile unsigned long *addr)
139 {
140         unsigned long mask = BITOP_MASK(nr);
141         unsigned long *p = ((unsigned long *)addr) + BITOP_WORD(nr);
142
143         *p  |= mask;
144 }
145
146 static inline void __clear_bit(int nr, volatile unsigned long *addr)
147 {
148         unsigned long mask = BITOP_MASK(nr);
149         unsigned long *p = ((unsigned long *)addr) + BITOP_WORD(nr);
150
151         *p &= ~mask;
152 }
153
154 /**
155  * test_bit - Determine whether a bit is set
156  * @nr: bit number to test
157  * @addr: Address to start counting from
158  */
159 static inline int test_bit(int nr, const volatile unsigned long *addr)
160 {
161         return 1UL & (addr[BITOP_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
162 }
163
164 /*
165  * error pointer
166  */
167 #define MAX_ERRNO       4095
168 #define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)
169
170 static inline void *ERR_PTR(long error)
171 {
172         return (void *) error;
173 }
174
175 static inline long PTR_ERR(const void *ptr)
176 {
177         return (long) ptr;
178 }
179
180 static inline long IS_ERR(const void *ptr)
181 {
182         return IS_ERR_VALUE((unsigned long)ptr);
183 }
184
185 /*
186  * max/min macro
187  */
188 #define min(x,y) ({ \
189         typeof(x) _x = (x);     \
190         typeof(y) _y = (y);     \
191         (void) (&_x == &_y);            \
192         _x < _y ? _x : _y; })
193
194 #define max(x,y) ({ \
195         typeof(x) _x = (x);     \
196         typeof(y) _y = (y);     \
197         (void) (&_x == &_y);            \
198         _x > _y ? _x : _y; })
199
200 #define min_t(type,x,y) \
201         ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
202 #define max_t(type,x,y) \
203         ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
204
205 /*
206  * printk
207  */
208 #define printk(fmt, args...) fprintf(stderr, fmt, ##args)
209 #define KERN_CRIT       ""
210 #define KERN_ERR        ""
211
212 /*
213  * kmalloc/kfree
214  */
215 #define kmalloc(x, y) malloc(x)
216 #define kzalloc(x, y) calloc(1, x)
217 #define kstrdup(x, y) strdup(x)
218 #define kfree(x) free(x)
219
220 #define BUG_ON(c) assert(!(c))
221 #define WARN_ON(c) assert(!(c))
222
223 #undef offsetof
224 #ifdef __compiler_offsetof
225 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
226 #else
227 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
228 #endif
229
230 #define container_of(ptr, type, member) ({                      \
231         const typeof( ((type *)0)->member ) *__mptr = (ptr);    \
232                 (type *)( (char *)__mptr - offsetof(type,member) );})
233 #ifdef __CHECKER__
234 #define __CHECK_ENDIAN__
235 #define __bitwise __bitwise__
236 #else
237 #define __bitwise
238 #endif
239
240 typedef u16 __bitwise __le16;
241 typedef u16 __bitwise __be16;
242 typedef u32 __bitwise __le32;
243 typedef u32 __bitwise __be32;
244 typedef u64 __bitwise __le64;
245 typedef u64 __bitwise __be64;
246
247 /* Macros to generate set/get funcs for the struct fields
248  * assume there is a lefoo_to_cpu for every type, so lets make a simple
249  * one for u8:
250  */
251 #define le8_to_cpu(v) (v)
252 #define cpu_to_le8(v) (v)
253 #define __le8 u8
254
255 #if __BYTE_ORDER == __BIG_ENDIAN
256 #define cpu_to_le64(x) ((__force __le64)(u64)(bswap_64(x)))
257 #define le64_to_cpu(x) ((__force u64)(__le64)(bswap_64(x)))
258 #define cpu_to_le32(x) ((__force __le32)(u32)(bswap_32(x)))
259 #define le32_to_cpu(x) ((__force u32)(__le32)(bswap_32(x)))
260 #define cpu_to_le16(x) ((__force __le16)(u16)(bswap_16(x)))
261 #define le16_to_cpu(x) ((__force u16)(__le16)(bswap_16(x)))
262 #else
263 #define cpu_to_le64(x) ((__force __le64)(u64)(x))
264 #define le64_to_cpu(x) ((__force u64)(__le64)(x))
265 #define cpu_to_le32(x) ((__force __le32)(u32)(x))
266 #define le32_to_cpu(x) ((__force u32)(__le32)(x))
267 #define cpu_to_le16(x) ((__force __le16)(u16)(x))
268 #define le16_to_cpu(x) ((__force u16)(__le16)(x))
269 #endif
270 #endif
271
272 #ifndef noinline
273 #define noinline
274 #endif