btrfs-progs: use ftw() unstead of system("du")
[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  * This looks more complex than it should be. But we need to
207  * get the type for the ~ right in round_down (it needs to be
208  * as wide as the result!), and we want to evaluate the macro
209  * arguments just once each.
210  */
211 #define __round_mask(x, y) ((__typeof__(x))((y)-1))
212 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
213 #define round_down(x, y) ((x) & ~__round_mask(x, y))
214
215 /*
216  * printk
217  */
218 #define printk(fmt, args...) fprintf(stderr, fmt, ##args)
219 #define KERN_CRIT       ""
220 #define KERN_ERR        ""
221
222 /*
223  * kmalloc/kfree
224  */
225 #define kmalloc(x, y) malloc(x)
226 #define kzalloc(x, y) calloc(1, x)
227 #define kstrdup(x, y) strdup(x)
228 #define kfree(x) free(x)
229
230 #define BUG_ON(c) assert(!(c))
231 #define WARN_ON(c) assert(!(c))
232
233 #undef offsetof
234 #ifdef __compiler_offsetof
235 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
236 #else
237 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
238 #endif
239
240 #define container_of(ptr, type, member) ({                      \
241         const typeof( ((type *)0)->member ) *__mptr = (ptr);    \
242                 (type *)( (char *)__mptr - offsetof(type,member) );})
243 #ifdef __CHECKER__
244 #define __CHECK_ENDIAN__
245 #define __bitwise __bitwise__
246 #else
247 #define __bitwise
248 #endif
249
250 typedef u16 __bitwise __le16;
251 typedef u16 __bitwise __be16;
252 typedef u32 __bitwise __le32;
253 typedef u32 __bitwise __be32;
254 typedef u64 __bitwise __le64;
255 typedef u64 __bitwise __be64;
256
257 /* Macros to generate set/get funcs for the struct fields
258  * assume there is a lefoo_to_cpu for every type, so lets make a simple
259  * one for u8:
260  */
261 #define le8_to_cpu(v) (v)
262 #define cpu_to_le8(v) (v)
263 #define __le8 u8
264
265 #if __BYTE_ORDER == __BIG_ENDIAN
266 #define cpu_to_le64(x) ((__force __le64)(u64)(bswap_64(x)))
267 #define le64_to_cpu(x) ((__force u64)(__le64)(bswap_64(x)))
268 #define cpu_to_le32(x) ((__force __le32)(u32)(bswap_32(x)))
269 #define le32_to_cpu(x) ((__force u32)(__le32)(bswap_32(x)))
270 #define cpu_to_le16(x) ((__force __le16)(u16)(bswap_16(x)))
271 #define le16_to_cpu(x) ((__force u16)(__le16)(bswap_16(x)))
272 #else
273 #define cpu_to_le64(x) ((__force __le64)(u64)(x))
274 #define le64_to_cpu(x) ((__force u64)(__le64)(x))
275 #define cpu_to_le32(x) ((__force __le32)(u32)(x))
276 #define le32_to_cpu(x) ((__force u32)(__le32)(x))
277 #define cpu_to_le16(x) ((__force __le16)(u16)(x))
278 #define le16_to_cpu(x) ((__force u16)(__le16)(x))
279 #endif
280
281 struct __una_u16 { u16 x; } __attribute__((__packed__));
282 struct __una_u32 { u32 x; } __attribute__((__packed__));
283 struct __una_u64 { u64 x; } __attribute__((__packed__));
284
285 #define get_unaligned_le8(p) (*((u8 *)(p)))
286 #define put_unaligned_le8(val,p) ((*((u8 *)(p))) = (val))
287 #define get_unaligned_le16(p) le16_to_cpu(((const struct __una_u16 *)(p))->x)
288 #define put_unaligned_le16(val,p) (((struct __una_u16 *)(p))->x = cpu_to_le16(val))
289 #define get_unaligned_le32(p) le32_to_cpu(((const struct __una_u32 *)(p))->x)
290 #define put_unaligned_le32(val,p) (((struct __una_u32 *)(p))->x = cpu_to_le32(val))
291 #define get_unaligned_le64(p) le64_to_cpu(((const struct __una_u64 *)(p))->x)
292 #define put_unaligned_le64(val,p) (((struct __una_u64 *)(p))->x = cpu_to_le64(val))
293 #endif
294
295 #ifndef noinline
296 #define noinline
297 #endif