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