]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/kernel.h
Update bcachefs sources to 24c6361e20 bcachefs: Fix a trans path overflow in bch2_btr...
[bcachefs-tools-debian] / include / linux / kernel.h
1 #ifndef __TOOLS_LINUX_KERNEL_H
2 #define __TOOLS_LINUX_KERNEL_H
3
4 #include <assert.h>
5 #include <errno.h>
6 #include <stdarg.h>
7 #include <stddef.h>
8 #include <stdio.h>
9 #include <limits.h>
10
11 #include <linux/bug.h>
12 #include <linux/byteorder.h>
13 #include <linux/compiler.h>
14 #include <linux/math.h>
15
16 #define __ARG_PLACEHOLDER_1 0,
17 #define __take_second_arg(__ignored, val, ...) val
18
19 #define __and(x, y)                     ___and(x, y)
20 #define ___and(x, y)                    ____and(__ARG_PLACEHOLDER_##x, y)
21 #define ____and(arg1_or_junk, y)        __take_second_arg(arg1_or_junk y, 0)
22
23 #define __or(x, y)                      ___or(x, y)
24 #define ___or(x, y)                     ____or(__ARG_PLACEHOLDER_##x, y)
25 #define ____or(arg1_or_junk, y)         __take_second_arg(arg1_or_junk 1, y)
26
27 #define __is_defined(x)                 ___is_defined(x)
28 #define ___is_defined(val)              ____is_defined(__ARG_PLACEHOLDER_##val)
29 #define ____is_defined(arg1_or_junk)    __take_second_arg(arg1_or_junk 1, 0)
30
31 /*
32  * IS_BUILTIN(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y', 0
33  * otherwise. For boolean options, this is equivalent to
34  * IS_ENABLED(CONFIG_FOO).
35  */
36 #define IS_BUILTIN(option) __is_defined(option)
37
38 /*
39  * IS_MODULE(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'm', 0
40  * otherwise.
41  */
42 #define IS_MODULE(option) __is_defined(option##_MODULE)
43
44 /*
45  * IS_REACHABLE(CONFIG_FOO) evaluates to 1 if the currently compiled
46  * code can call a function defined in code compiled based on CONFIG_FOO.
47  * This is similar to IS_ENABLED(), but returns false when invoked from
48  * built-in code when CONFIG_FOO is set to 'm'.
49  */
50 #define IS_REACHABLE(option) __or(IS_BUILTIN(option), \
51                                 __and(IS_MODULE(option), __is_defined(MODULE)))
52
53 /*
54  * IS_ENABLED(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y' or 'm',
55  * 0 otherwise.
56  */
57 #define IS_ENABLED(option) __or(IS_BUILTIN(option), IS_MODULE(option))
58 #define EXPORT_SYMBOL(sym)
59
60 #define U8_MAX          ((u8)~0U)
61 #define S8_MAX          ((s8)(U8_MAX>>1))
62 #define S8_MIN          ((s8)(-S8_MAX - 1))
63 #define U16_MAX         ((u16)~0U)
64 #define S16_MAX         ((s16)(U16_MAX>>1))
65 #define S16_MIN         ((s16)(-S16_MAX - 1))
66 #define U32_MAX         ((u32)~0U)
67 #define S32_MAX         ((s32)(U32_MAX>>1))
68 #define S32_MIN         ((s32)(-S32_MAX - 1))
69 #define U64_MAX         ((u64)~0ULL)
70 #define S64_MAX         ((s64)(U64_MAX>>1))
71 #define S64_MIN         ((s64)(-S64_MAX - 1))
72
73 #define ALIGN(x, a)     __ALIGN_MASK(x, (typeof(x))(a)-1)
74 #define __ALIGN_MASK(x, mask)   (((x)+(mask))&~(mask))
75
76 #define PTR_ALIGN(p, a)         ((typeof(p))ALIGN((unsigned long)(p), (a)))
77 #define IS_ALIGNED(x, a)                (((x) & ((typeof(x))(a) - 1)) == 0)
78
79 #define __must_be_array(a)      BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0]))
80 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
81
82 #ifndef offsetof
83 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
84 #endif
85
86 #ifndef container_of
87 /**
88  * container_of - cast a member of a structure out to the containing structure
89  * @ptr:        the pointer to the member.
90  * @type:       the type of the container struct this is embedded in.
91  * @member:     the name of the member within the struct.
92  *
93  */
94 #define container_of(ptr, type, member) ({                      \
95         const typeof(((type *)0)->member) * __mptr = (ptr);     \
96         (type *)((char *)__mptr - offsetof(type, member)); })
97 #endif
98
99 #define max(x, y) ({                            \
100         typeof(x) _max1 = (x);                  \
101         typeof(y) _max2 = (y);                  \
102         (void) (&_max1 == &_max2);              \
103         _max1 > _max2 ? _max1 : _max2; })
104
105 #define min(x, y) ({                            \
106         typeof(x) _min1 = (x);                  \
107         typeof(y) _min2 = (y);                  \
108         (void) (&_min1 == &_min2);              \
109         _min1 < _min2 ? _min1 : _min2; })
110
111 #define min_t(type, x, y) ({                    \
112         type __min1 = (x);                      \
113         type __min2 = (y);                      \
114         __min1 < __min2 ? __min1: __min2; })
115
116 #define max_t(type, x, y) ({                    \
117         type __max1 = (x);                      \
118         type __max2 = (y);                      \
119         __max1 > __max2 ? __max1: __max2; })
120
121 #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi)
122
123 #define swap(a, b) \
124         do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
125
126 /* This counts to 12. Any more, it will return 13th argument. */
127 #define __COUNT_ARGS(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _n, X...) _n
128 #define COUNT_ARGS(X...) __COUNT_ARGS(, ##X, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
129
130 #define _RET_IP_                (unsigned long)__builtin_return_address(0)
131 #define _THIS_IP_  ({ __label__ __here; __here: (unsigned long)&&__here; })
132
133 #define might_sleep()
134
135 #define cpu_relax()             do {} while (0)
136 #define cpu_relax_lowlatency()  do {} while (0)
137
138 #define panic(fmt, ...)                                 \
139 do {                                                    \
140         printf(fmt, ##__VA_ARGS__);                     \
141         BUG();                                          \
142 } while (0)
143
144 int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
145 int __must_check _kstrtol(const char *s, unsigned int base, long *res);
146
147 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
148 int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
149
150 /**
151  * kstrtoul - convert a string to an unsigned long
152  * @s: The start of the string. The string must be null-terminated, and may also
153  *  include a single newline before its terminating null. The first character
154  *  may also be a plus sign, but not a minus sign.
155  * @base: The number base to use. The maximum supported base is 16. If base is
156  *  given as 0, then the base of the string is automatically detected with the
157  *  conventional semantics - If it begins with 0x the number will be parsed as a
158  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
159  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
160  * @res: Where to write the result of the conversion on success.
161  *
162  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
163  * Used as a replacement for the obsolete simple_strtoull. Return code must
164  * be checked.
165 */
166 static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res)
167 {
168         /*
169          * We want to shortcut function call, but
170          * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0.
171          */
172         if (sizeof(unsigned long) == sizeof(unsigned long long) &&
173             __alignof__(unsigned long) == __alignof__(unsigned long long))
174                 return kstrtoull(s, base, (unsigned long long *)res);
175         else
176                 return _kstrtoul(s, base, res);
177 }
178
179 /**
180  * kstrtol - convert a string to a long
181  * @s: The start of the string. The string must be null-terminated, and may also
182  *  include a single newline before its terminating null. The first character
183  *  may also be a plus sign or a minus sign.
184  * @base: The number base to use. The maximum supported base is 16. If base is
185  *  given as 0, then the base of the string is automatically detected with the
186  *  conventional semantics - If it begins with 0x the number will be parsed as a
187  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
188  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
189  * @res: Where to write the result of the conversion on success.
190  *
191  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
192  * Used as a replacement for the obsolete simple_strtoull. Return code must
193  * be checked.
194  */
195 static inline int __must_check kstrtol(const char *s, unsigned int base, long *res)
196 {
197         /*
198          * We want to shortcut function call, but
199          * __builtin_types_compatible_p(long, long long) = 0.
200          */
201         if (sizeof(long) == sizeof(long long) &&
202             __alignof__(long) == __alignof__(long long))
203                 return kstrtoll(s, base, (long long *)res);
204         else
205                 return _kstrtol(s, base, res);
206 }
207
208 int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
209 int __must_check kstrtoint(const char *s, unsigned int base, int *res);
210
211 static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res)
212 {
213         return kstrtoull(s, base, res);
214 }
215
216 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res)
217 {
218         return kstrtoll(s, base, res);
219 }
220
221 static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res)
222 {
223         return kstrtouint(s, base, res);
224 }
225
226 static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res)
227 {
228         return kstrtoint(s, base, res);
229 }
230
231 struct printbuf;
232 extern __printf(2, 0) void prt_vprintf(struct printbuf *out, const char *fmt, va_list args);
233 extern __printf(2, 3) void prt_printf(struct printbuf *out, const char *fmt, ...);
234
235 static const char hex_asc[] = "0123456789abcdef";
236 #define hex_asc_lo(x)   hex_asc[((x) & 0x0f)]
237 #define hex_asc_hi(x)   hex_asc[((x) & 0xf0) >> 4]
238 static const char hex_asc_upper[] = "0123456789ABCDEF";
239 #define hex_asc_upper_lo(x)     hex_asc_upper[((x) & 0x0f)]
240 #define hex_asc_upper_hi(x)     hex_asc_upper[((x) & 0xf0) >> 4]
241
242 /* The hash is always the low bits of hash_len */
243 #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
244  #define HASH_LEN_DECLARE u32 hash; u32 len
245 #else
246  #define HASH_LEN_DECLARE u32 len; u32 hash
247 #endif
248
249 struct qstr {
250         union {
251                 struct {
252                         HASH_LEN_DECLARE;
253                 };
254                 u64 hash_len;
255         };
256         const unsigned char *name;
257 };
258
259 #define QSTR_INIT(n,l) { { { .len = l } }, .name = n }
260
261 #define POISON_FREE 0x6b
262
263 static inline void dump_stack(void) {}
264
265 #endif