xref: /linux-6.15/include/linux/kernel.h (revision cedc5b6a)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21da177e4SLinus Torvalds #ifndef _LINUX_KERNEL_H
31da177e4SLinus Torvalds #define _LINUX_KERNEL_H
41da177e4SLinus Torvalds 
51da177e4SLinus Torvalds 
61da177e4SLinus Torvalds #include <stdarg.h>
71da177e4SLinus Torvalds #include <linux/linkage.h>
81da177e4SLinus Torvalds #include <linux/stddef.h>
91da177e4SLinus Torvalds #include <linux/types.h>
101da177e4SLinus Torvalds #include <linux/compiler.h>
111da177e4SLinus Torvalds #include <linux/bitops.h>
12f0d1b0b3SDavid Howells #include <linux/log2.h>
13e0deaff4SAndrew Morton #include <linux/typecheck.h>
14968ab183SLinus Torvalds #include <linux/printk.h>
15c7acec71SIan Abbott #include <linux/build_bug.h>
161da177e4SLinus Torvalds #include <asm/byteorder.h>
17607ca46eSDavid Howells #include <uapi/linux/kernel.h>
181da177e4SLinus Torvalds 
194be929beSAlexey Dobriyan #define USHRT_MAX	((u16)(~0U))
204be929beSAlexey Dobriyan #define SHRT_MAX	((s16)(USHRT_MAX>>1))
214be929beSAlexey Dobriyan #define SHRT_MIN	((s16)(-SHRT_MAX - 1))
221da177e4SLinus Torvalds #define INT_MAX		((int)(~0U>>1))
231da177e4SLinus Torvalds #define INT_MIN		(-INT_MAX - 1)
241da177e4SLinus Torvalds #define UINT_MAX	(~0U)
251da177e4SLinus Torvalds #define LONG_MAX	((long)(~0UL>>1))
261da177e4SLinus Torvalds #define LONG_MIN	(-LONG_MAX - 1)
271da177e4SLinus Torvalds #define ULONG_MAX	(~0UL)
28111ebb6eSOGAWA Hirofumi #define LLONG_MAX	((long long)(~0ULL>>1))
29111ebb6eSOGAWA Hirofumi #define LLONG_MIN	(-LLONG_MAX - 1)
30111ebb6eSOGAWA Hirofumi #define ULLONG_MAX	(~0ULL)
31a3860c1cSXi Wang #define SIZE_MAX	(~(size_t)0)
321c4bc43dSStefan Agner #define PHYS_ADDR_MAX	(~(phys_addr_t)0)
331da177e4SLinus Torvalds 
3489a07141SAlex Elder #define U8_MAX		((u8)~0U)
3589a07141SAlex Elder #define S8_MAX		((s8)(U8_MAX>>1))
3689a07141SAlex Elder #define S8_MIN		((s8)(-S8_MAX - 1))
3789a07141SAlex Elder #define U16_MAX		((u16)~0U)
3889a07141SAlex Elder #define S16_MAX		((s16)(U16_MAX>>1))
3989a07141SAlex Elder #define S16_MIN		((s16)(-S16_MAX - 1))
4089a07141SAlex Elder #define U32_MAX		((u32)~0U)
4189a07141SAlex Elder #define S32_MAX		((s32)(U32_MAX>>1))
4289a07141SAlex Elder #define S32_MIN		((s32)(-S32_MAX - 1))
4389a07141SAlex Elder #define U64_MAX		((u64)~0ULL)
4489a07141SAlex Elder #define S64_MAX		((s64)(U64_MAX>>1))
4589a07141SAlex Elder #define S64_MIN		((s64)(-S64_MAX - 1))
4689a07141SAlex Elder 
471da177e4SLinus Torvalds #define STACK_MAGIC	0xdeadbeef
481da177e4SLinus Torvalds 
49e8c97af0SRandy Dunlap /**
50e8c97af0SRandy Dunlap  * REPEAT_BYTE - repeat the value @x multiple times as an unsigned long value
51e8c97af0SRandy Dunlap  * @x: value to repeat
52e8c97af0SRandy Dunlap  *
53e8c97af0SRandy Dunlap  * NOTE: @x is not checked for > 0xff; larger values produce odd results.
54e8c97af0SRandy Dunlap  */
5544696908SDavid S. Miller #define REPEAT_BYTE(x)	((~0ul / 0xff) * (x))
5644696908SDavid S. Miller 
573ca45a46Szijun_hu /* @a is a power of 2 value */
58a79ff731SAlexey Dobriyan #define ALIGN(x, a)		__ALIGN_KERNEL((x), (a))
59ed067d4aSKrzysztof Kozlowski #define ALIGN_DOWN(x, a)	__ALIGN_KERNEL((x) - ((a) - 1), (a))
609f93ff5bSAlexey Dobriyan #define __ALIGN_MASK(x, mask)	__ALIGN_KERNEL_MASK((x), (mask))
61a83308e6SMatthew Wilcox #define PTR_ALIGN(p, a)		((typeof(p))ALIGN((unsigned long)(p), (a)))
62f10db627SHerbert Xu #define IS_ALIGNED(x, a)		(((x) & ((typeof(x))(a) - 1)) == 0)
632ea58144SLinus Torvalds 
64d3849953SChristoph Hellwig /* generic data direction definitions */
65d3849953SChristoph Hellwig #define READ			0
66d3849953SChristoph Hellwig #define WRITE			1
67d3849953SChristoph Hellwig 
68e8c97af0SRandy Dunlap /**
69e8c97af0SRandy Dunlap  * ARRAY_SIZE - get the number of elements in array @arr
70e8c97af0SRandy Dunlap  * @arr: array to be sized
71e8c97af0SRandy Dunlap  */
72c5e631cfSRusty Russell #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
73c5e631cfSRusty Russell 
743ed605bcSGustavo Padovan #define u64_to_user_ptr(x) (		\
753ed605bcSGustavo Padovan {					\
763ed605bcSGustavo Padovan 	typecheck(u64, x);		\
773ed605bcSGustavo Padovan 	(void __user *)(uintptr_t)x;	\
783ed605bcSGustavo Padovan }					\
793ed605bcSGustavo Padovan )
803ed605bcSGustavo Padovan 
819b3be9f9SYinghai Lu /*
829b3be9f9SYinghai Lu  * This looks more complex than it should be. But we need to
839b3be9f9SYinghai Lu  * get the type for the ~ right in round_down (it needs to be
849b3be9f9SYinghai Lu  * as wide as the result!), and we want to evaluate the macro
859b3be9f9SYinghai Lu  * arguments just once each.
869b3be9f9SYinghai Lu  */
879b3be9f9SYinghai Lu #define __round_mask(x, y) ((__typeof__(x))((y)-1))
88*cedc5b6aSKees Cook /**
89*cedc5b6aSKees Cook  * round_up - round up to next specified power of 2
90*cedc5b6aSKees Cook  * @x: the value to round
91*cedc5b6aSKees Cook  * @y: multiple to round up to (must be a power of 2)
92*cedc5b6aSKees Cook  *
93*cedc5b6aSKees Cook  * Rounds @x up to next multiple of @y (which must be a power of 2).
94*cedc5b6aSKees Cook  * To perform arbitrary rounding up, use roundup() below.
95*cedc5b6aSKees Cook  */
969b3be9f9SYinghai Lu #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
97*cedc5b6aSKees Cook /**
98*cedc5b6aSKees Cook  * round_down - round down to next specified power of 2
99*cedc5b6aSKees Cook  * @x: the value to round
100*cedc5b6aSKees Cook  * @y: multiple to round down to (must be a power of 2)
101*cedc5b6aSKees Cook  *
102*cedc5b6aSKees Cook  * Rounds @x down to next multiple of @y (which must be a power of 2).
103*cedc5b6aSKees Cook  * To perform arbitrary rounding down, use rounddown() below.
104*cedc5b6aSKees Cook  */
1059b3be9f9SYinghai Lu #define round_down(x, y) ((x) & ~__round_mask(x, y))
1069b3be9f9SYinghai Lu 
107e8c97af0SRandy Dunlap /**
108e8c97af0SRandy Dunlap  * FIELD_SIZEOF - get the size of a struct's field
109e8c97af0SRandy Dunlap  * @t: the target struct
110e8c97af0SRandy Dunlap  * @f: the target struct's field
111e8c97af0SRandy Dunlap  * Return: the size of @f in the struct definition without having a
112e8c97af0SRandy Dunlap  * declared instance of @t.
113e8c97af0SRandy Dunlap  */
1144552d5dcSJan Beulich #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
115e8c97af0SRandy Dunlap 
116b5d3755aSNicolas Dichtel #define DIV_ROUND_UP __KERNEL_DIV_ROUND_UP
117604df322SMasahiro Yamada 
118604df322SMasahiro Yamada #define DIV_ROUND_DOWN_ULL(ll, d) \
119604df322SMasahiro Yamada 	({ unsigned long long _tmp = (ll); do_div(_tmp, d); _tmp; })
120604df322SMasahiro Yamada 
121604df322SMasahiro Yamada #define DIV_ROUND_UP_ULL(ll, d)		DIV_ROUND_DOWN_ULL((ll) + (d) - 1, (d))
12236a26c69SNicholas Bellinger 
12336a26c69SNicholas Bellinger #if BITS_PER_LONG == 32
12436a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d)
12536a26c69SNicholas Bellinger #else
12636a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP(ll,d)
12736a26c69SNicholas Bellinger #endif
128074e61ecSJames Morris 
129*cedc5b6aSKees Cook /**
130*cedc5b6aSKees Cook  * roundup - round up to the next specified multiple
131*cedc5b6aSKees Cook  * @x: the value to up
132*cedc5b6aSKees Cook  * @y: multiple to round up to
133*cedc5b6aSKees Cook  *
134*cedc5b6aSKees Cook  * Rounds @x up to next multiple of @y. If @y will always be a power
135*cedc5b6aSKees Cook  * of 2, consider using the faster round_up().
136*cedc5b6aSKees Cook  *
137*cedc5b6aSKees Cook  * The `const' here prevents gcc-3.3 from calling __divdi3
138*cedc5b6aSKees Cook  */
139b28efd54SEric Paris #define roundup(x, y) (					\
140b28efd54SEric Paris {							\
1416070bf35STetsuo Handa 	const typeof(y) __y = y;			\
142b28efd54SEric Paris 	(((x) + (__y - 1)) / __y) * __y;		\
143b28efd54SEric Paris }							\
144b28efd54SEric Paris )
145*cedc5b6aSKees Cook /**
146*cedc5b6aSKees Cook  * rounddown - round down to next specified multiple
147*cedc5b6aSKees Cook  * @x: the value to round
148*cedc5b6aSKees Cook  * @y: multiple to round down to
149*cedc5b6aSKees Cook  *
150*cedc5b6aSKees Cook  * Rounds @x down to next multiple of @y. If @y will always be a power
151*cedc5b6aSKees Cook  * of 2, consider using the faster round_down().
152*cedc5b6aSKees Cook  */
153686a0f3dSEric Paris #define rounddown(x, y) (				\
154686a0f3dSEric Paris {							\
155686a0f3dSEric Paris 	typeof(x) __x = (x);				\
156686a0f3dSEric Paris 	__x - (__x % (y));				\
157686a0f3dSEric Paris }							\
158686a0f3dSEric Paris )
159b6d86d3dSGuenter Roeck 
160b6d86d3dSGuenter Roeck /*
1614f5901f5SNiklas Söderlund  * Divide positive or negative dividend by positive or negative divisor
1624f5901f5SNiklas Söderlund  * and round to closest integer. Result is undefined for negative
163e8c97af0SRandy Dunlap  * divisors if the dividend variable type is unsigned and for negative
1644f5901f5SNiklas Söderlund  * dividends if the divisor variable type is unsigned.
165b6d86d3dSGuenter Roeck  */
1669fe06081SDarrick J. Wong #define DIV_ROUND_CLOSEST(x, divisor)(			\
1679fe06081SDarrick J. Wong {							\
168b6d86d3dSGuenter Roeck 	typeof(x) __x = x;				\
169b6d86d3dSGuenter Roeck 	typeof(divisor) __d = divisor;			\
170c4e18497SGuenter Roeck 	(((typeof(x))-1) > 0 ||				\
1714f5901f5SNiklas Söderlund 	 ((typeof(divisor))-1) > 0 ||			\
1724f5901f5SNiklas Söderlund 	 (((__x) > 0) == ((__d) > 0))) ?		\
173b6d86d3dSGuenter Roeck 		(((__x) + ((__d) / 2)) / (__d)) :	\
174b6d86d3dSGuenter Roeck 		(((__x) - ((__d) / 2)) / (__d));	\
1759fe06081SDarrick J. Wong }							\
1769fe06081SDarrick J. Wong )
177f766093eSJavi Merino /*
178f766093eSJavi Merino  * Same as above but for u64 dividends. divisor must be a 32-bit
179f766093eSJavi Merino  * number.
180f766093eSJavi Merino  */
181f766093eSJavi Merino #define DIV_ROUND_CLOSEST_ULL(x, divisor)(		\
182f766093eSJavi Merino {							\
183f766093eSJavi Merino 	typeof(divisor) __d = divisor;			\
184f766093eSJavi Merino 	unsigned long long _tmp = (x) + (__d) / 2;	\
185f766093eSJavi Merino 	do_div(_tmp, __d);				\
186f766093eSJavi Merino 	_tmp;						\
187f766093eSJavi Merino }							\
188f766093eSJavi Merino )
1891da177e4SLinus Torvalds 
1909993bc63SSalman Qazi /*
1919993bc63SSalman Qazi  * Multiplies an integer by a fraction, while avoiding unnecessary
1929993bc63SSalman Qazi  * overflow or loss of precision.
1939993bc63SSalman Qazi  */
1949993bc63SSalman Qazi #define mult_frac(x, numer, denom)(			\
1959993bc63SSalman Qazi {							\
1969993bc63SSalman Qazi 	typeof(x) quot = (x) / (denom);			\
1979993bc63SSalman Qazi 	typeof(x) rem  = (x) % (denom);			\
1989993bc63SSalman Qazi 	(quot * (numer)) + ((rem * (numer)) / (denom));	\
1999993bc63SSalman Qazi }							\
2009993bc63SSalman Qazi )
2019993bc63SSalman Qazi 
2029993bc63SSalman Qazi 
203ca31e146SEduard - Gabriel Munteanu #define _RET_IP_		(unsigned long)__builtin_return_address(0)
204ca31e146SEduard - Gabriel Munteanu #define _THIS_IP_  ({ __label__ __here; __here: (unsigned long)&&__here; })
205ca31e146SEduard - Gabriel Munteanu 
20690c699a9SBartlomiej Zolnierkiewicz #ifdef CONFIG_LBDAF
2072da96acdSJens Axboe # include <asm/div64.h>
2082da96acdSJens Axboe # define sector_div(a, b) do_div(a, b)
2092da96acdSJens Axboe #else
2102da96acdSJens Axboe # define sector_div(n, b)( \
2112da96acdSJens Axboe { \
2122da96acdSJens Axboe 	int _res; \
2132da96acdSJens Axboe 	_res = (n) % (b); \
2142da96acdSJens Axboe 	(n) /= (b); \
2152da96acdSJens Axboe 	_res; \
2162da96acdSJens Axboe } \
2172da96acdSJens Axboe )
2182da96acdSJens Axboe #endif
2192da96acdSJens Axboe 
220218e180eSAndrew Morton /**
221218e180eSAndrew Morton  * upper_32_bits - return bits 32-63 of a number
222218e180eSAndrew Morton  * @n: the number we're accessing
223218e180eSAndrew Morton  *
224218e180eSAndrew Morton  * A basic shift-right of a 64- or 32-bit quantity.  Use this to suppress
225218e180eSAndrew Morton  * the "right shift count >= width of type" warning when that quantity is
226218e180eSAndrew Morton  * 32-bits.
227218e180eSAndrew Morton  */
228218e180eSAndrew Morton #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
229218e180eSAndrew Morton 
230204b885eSJoerg Roedel /**
231204b885eSJoerg Roedel  * lower_32_bits - return bits 0-31 of a number
232204b885eSJoerg Roedel  * @n: the number we're accessing
233204b885eSJoerg Roedel  */
234204b885eSJoerg Roedel #define lower_32_bits(n) ((u32)(n))
235204b885eSJoerg Roedel 
2361da177e4SLinus Torvalds struct completion;
237df2e71fbS[email protected] struct pt_regs;
238df2e71fbS[email protected] struct user;
2391da177e4SLinus Torvalds 
240070cb065SUwe Kleine-König #ifdef CONFIG_PREEMPT_VOLUNTARY
241070cb065SUwe Kleine-König extern int _cond_resched(void);
242070cb065SUwe Kleine-König # define might_resched() _cond_resched()
243070cb065SUwe Kleine-König #else
244070cb065SUwe Kleine-König # define might_resched() do { } while (0)
245070cb065SUwe Kleine-König #endif
246070cb065SUwe Kleine-König 
247d902db1eSFrederic Weisbecker #ifdef CONFIG_DEBUG_ATOMIC_SLEEP
2483427445aSPeter Zijlstra   void ___might_sleep(const char *file, int line, int preempt_offset);
249d894837fSSimon Kagstrom   void __might_sleep(const char *file, int line, int preempt_offset);
2501da177e4SLinus Torvalds /**
2511da177e4SLinus Torvalds  * might_sleep - annotation for functions that can sleep
2521da177e4SLinus Torvalds  *
2531da177e4SLinus Torvalds  * this macro will print a stack trace if it is executed in an atomic
2541da177e4SLinus Torvalds  * context (spinlock, irq-handler, ...).
2551da177e4SLinus Torvalds  *
2561da177e4SLinus Torvalds  * This is a useful debugging help to be able to catch problems early and not
257e20ec991SJim Cromie  * be bitten later when the calling function happens to sleep when it is not
2581da177e4SLinus Torvalds  * supposed to.
2591da177e4SLinus Torvalds  */
260f8cbd99bSIngo Molnar # define might_sleep() \
261e4aafea2SFrederic Weisbecker 	do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
26200845eb9SLinus Torvalds # define sched_annotate_sleep()	(current->task_state_change = 0)
263f8cbd99bSIngo Molnar #else
2643427445aSPeter Zijlstra   static inline void ___might_sleep(const char *file, int line,
2653427445aSPeter Zijlstra 				   int preempt_offset) { }
266d894837fSSimon Kagstrom   static inline void __might_sleep(const char *file, int line,
267d894837fSSimon Kagstrom 				   int preempt_offset) { }
268f8cbd99bSIngo Molnar # define might_sleep() do { might_resched(); } while (0)
2691029a2b5SPeter Zijlstra # define sched_annotate_sleep() do { } while (0)
270f8cbd99bSIngo Molnar #endif
271f8cbd99bSIngo Molnar 
272368a5fa1SHua Zhong #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
273f8cbd99bSIngo Molnar 
274c8299cb6SMichal Nazarewicz /**
275c8299cb6SMichal Nazarewicz  * abs - return absolute value of an argument
2768f57e4d9SMichal Nazarewicz  * @x: the value.  If it is unsigned type, it is converted to signed type first.
2778f57e4d9SMichal Nazarewicz  *     char is treated as if it was signed (regardless of whether it really is)
2788f57e4d9SMichal Nazarewicz  *     but the macro's return type is preserved as char.
279c8299cb6SMichal Nazarewicz  *
2808f57e4d9SMichal Nazarewicz  * Return: an absolute value of x.
28171a90484SAndrew Morton  */
2828f57e4d9SMichal Nazarewicz #define abs(x)	__abs_choose_expr(x, long long,				\
2838f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, long,				\
2848f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, int,				\
2858f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, short,				\
2868f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, char,				\
2878f57e4d9SMichal Nazarewicz 		__builtin_choose_expr(					\
2888f57e4d9SMichal Nazarewicz 			__builtin_types_compatible_p(typeof(x), char),	\
2898f57e4d9SMichal Nazarewicz 			(char)({ signed char __x = (x); __x<0?-__x:__x; }), \
2908f57e4d9SMichal Nazarewicz 			((void)0)))))))
2918f57e4d9SMichal Nazarewicz 
2928f57e4d9SMichal Nazarewicz #define __abs_choose_expr(x, type, other) __builtin_choose_expr(	\
2938f57e4d9SMichal Nazarewicz 	__builtin_types_compatible_p(typeof(x),   signed type) ||	\
2948f57e4d9SMichal Nazarewicz 	__builtin_types_compatible_p(typeof(x), unsigned type),		\
2958f57e4d9SMichal Nazarewicz 	({ signed type __x = (x); __x < 0 ? -__x : __x; }), other)
2961da177e4SLinus Torvalds 
29789770b0aSDaniel Borkmann /**
29889770b0aSDaniel Borkmann  * reciprocal_scale - "scale" a value into range [0, ep_ro)
29989770b0aSDaniel Borkmann  * @val: value
30089770b0aSDaniel Borkmann  * @ep_ro: right open interval endpoint
30189770b0aSDaniel Borkmann  *
30289770b0aSDaniel Borkmann  * Perform a "reciprocal multiplication" in order to "scale" a value into
303e8c97af0SRandy Dunlap  * range [0, @ep_ro), where the upper interval endpoint is right-open.
30489770b0aSDaniel Borkmann  * This is useful, e.g. for accessing a index of an array containing
305e8c97af0SRandy Dunlap  * @ep_ro elements, for example. Think of it as sort of modulus, only that
30689770b0aSDaniel Borkmann  * the result isn't that of modulo. ;) Note that if initial input is a
30789770b0aSDaniel Borkmann  * small value, then result will return 0.
30889770b0aSDaniel Borkmann  *
309e8c97af0SRandy Dunlap  * Return: a result based on @val in interval [0, @ep_ro).
31089770b0aSDaniel Borkmann  */
31189770b0aSDaniel Borkmann static inline u32 reciprocal_scale(u32 val, u32 ep_ro)
31289770b0aSDaniel Borkmann {
31389770b0aSDaniel Borkmann 	return (u32)(((u64) val * ep_ro) >> 32);
31489770b0aSDaniel Borkmann }
31589770b0aSDaniel Borkmann 
316386e7906SAxel Lin #if defined(CONFIG_MMU) && \
317386e7906SAxel Lin 	(defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP))
3189ec23531SDavid Hildenbrand #define might_fault() __might_fault(__FILE__, __LINE__)
3199ec23531SDavid Hildenbrand void __might_fault(const char *file, int line);
3203ee1afa3SNick Piggin #else
321662bbcb2SMichael S. Tsirkin static inline void might_fault(void) { }
3223ee1afa3SNick Piggin #endif
3233ee1afa3SNick Piggin 
324e041c683SAlan Stern extern struct atomic_notifier_head panic_notifier_list;
325c7ff0d9cSTAMUKI Shoichi extern long (*panic_blink)(int state);
3269402c95fSJoe Perches __printf(1, 2)
3279af6528eSPeter Zijlstra void panic(const char *fmt, ...) __noreturn __cold;
328ebc41f20SHidehiro Kawai void nmi_panic(struct pt_regs *regs, const char *msg);
329dd287796SAndrew Morton extern void oops_enter(void);
330dd287796SAndrew Morton extern void oops_exit(void);
331863a6049SAnton Blanchard void print_oops_end_marker(void);
332dd287796SAndrew Morton extern int oops_may_print(void);
3339af6528eSPeter Zijlstra void do_exit(long error_code) __noreturn;
3349af6528eSPeter Zijlstra void complete_and_exit(struct completion *, long) __noreturn;
33533ee3b2eSAlexey Dobriyan 
3367a46ec0eSKees Cook #ifdef CONFIG_ARCH_HAS_REFCOUNT
3377a46ec0eSKees Cook void refcount_error_report(struct pt_regs *regs, const char *err);
3387a46ec0eSKees Cook #else
3397a46ec0eSKees Cook static inline void refcount_error_report(struct pt_regs *regs, const char *err)
3407a46ec0eSKees Cook { }
3417a46ec0eSKees Cook #endif
3427a46ec0eSKees Cook 
34333ee3b2eSAlexey Dobriyan /* Internal, do not use. */
34433ee3b2eSAlexey Dobriyan int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
34533ee3b2eSAlexey Dobriyan int __must_check _kstrtol(const char *s, unsigned int base, long *res);
34633ee3b2eSAlexey Dobriyan 
34733ee3b2eSAlexey Dobriyan int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
34833ee3b2eSAlexey Dobriyan int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
3494c925d60SEldad Zack 
3504c925d60SEldad Zack /**
3514c925d60SEldad Zack  * kstrtoul - convert a string to an unsigned long
3524c925d60SEldad Zack  * @s: The start of the string. The string must be null-terminated, and may also
3534c925d60SEldad Zack  *  include a single newline before its terminating null. The first character
3544c925d60SEldad Zack  *  may also be a plus sign, but not a minus sign.
3554c925d60SEldad Zack  * @base: The number base to use. The maximum supported base is 16. If base is
3564c925d60SEldad Zack  *  given as 0, then the base of the string is automatically detected with the
3574c925d60SEldad Zack  *  conventional semantics - If it begins with 0x the number will be parsed as a
3584c925d60SEldad Zack  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
3594c925d60SEldad Zack  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
3604c925d60SEldad Zack  * @res: Where to write the result of the conversion on success.
3614c925d60SEldad Zack  *
3624c925d60SEldad Zack  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
3634c925d60SEldad Zack  * Used as a replacement for the obsolete simple_strtoull. Return code must
3644c925d60SEldad Zack  * be checked.
3654c925d60SEldad Zack */
36633ee3b2eSAlexey Dobriyan static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res)
36733ee3b2eSAlexey Dobriyan {
36833ee3b2eSAlexey Dobriyan 	/*
36933ee3b2eSAlexey Dobriyan 	 * We want to shortcut function call, but
37033ee3b2eSAlexey Dobriyan 	 * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0.
37133ee3b2eSAlexey Dobriyan 	 */
37233ee3b2eSAlexey Dobriyan 	if (sizeof(unsigned long) == sizeof(unsigned long long) &&
37333ee3b2eSAlexey Dobriyan 	    __alignof__(unsigned long) == __alignof__(unsigned long long))
37433ee3b2eSAlexey Dobriyan 		return kstrtoull(s, base, (unsigned long long *)res);
37533ee3b2eSAlexey Dobriyan 	else
37633ee3b2eSAlexey Dobriyan 		return _kstrtoul(s, base, res);
37733ee3b2eSAlexey Dobriyan }
37833ee3b2eSAlexey Dobriyan 
3794c925d60SEldad Zack /**
3804c925d60SEldad Zack  * kstrtol - convert a string to a long
3814c925d60SEldad Zack  * @s: The start of the string. The string must be null-terminated, and may also
3824c925d60SEldad Zack  *  include a single newline before its terminating null. The first character
3834c925d60SEldad Zack  *  may also be a plus sign or a minus sign.
3844c925d60SEldad Zack  * @base: The number base to use. The maximum supported base is 16. If base is
3854c925d60SEldad Zack  *  given as 0, then the base of the string is automatically detected with the
3864c925d60SEldad Zack  *  conventional semantics - If it begins with 0x the number will be parsed as a
3874c925d60SEldad Zack  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
3884c925d60SEldad Zack  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
3894c925d60SEldad Zack  * @res: Where to write the result of the conversion on success.
3904c925d60SEldad Zack  *
3914c925d60SEldad Zack  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
3924c925d60SEldad Zack  * Used as a replacement for the obsolete simple_strtoull. Return code must
3934c925d60SEldad Zack  * be checked.
3944c925d60SEldad Zack  */
39533ee3b2eSAlexey Dobriyan static inline int __must_check kstrtol(const char *s, unsigned int base, long *res)
39633ee3b2eSAlexey Dobriyan {
39733ee3b2eSAlexey Dobriyan 	/*
39833ee3b2eSAlexey Dobriyan 	 * We want to shortcut function call, but
39933ee3b2eSAlexey Dobriyan 	 * __builtin_types_compatible_p(long, long long) = 0.
40033ee3b2eSAlexey Dobriyan 	 */
40133ee3b2eSAlexey Dobriyan 	if (sizeof(long) == sizeof(long long) &&
40233ee3b2eSAlexey Dobriyan 	    __alignof__(long) == __alignof__(long long))
40333ee3b2eSAlexey Dobriyan 		return kstrtoll(s, base, (long long *)res);
40433ee3b2eSAlexey Dobriyan 	else
40533ee3b2eSAlexey Dobriyan 		return _kstrtol(s, base, res);
40633ee3b2eSAlexey Dobriyan }
40733ee3b2eSAlexey Dobriyan 
40833ee3b2eSAlexey Dobriyan int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
40933ee3b2eSAlexey Dobriyan int __must_check kstrtoint(const char *s, unsigned int base, int *res);
41033ee3b2eSAlexey Dobriyan 
41133ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res)
41233ee3b2eSAlexey Dobriyan {
41333ee3b2eSAlexey Dobriyan 	return kstrtoull(s, base, res);
41433ee3b2eSAlexey Dobriyan }
41533ee3b2eSAlexey Dobriyan 
41633ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res)
41733ee3b2eSAlexey Dobriyan {
41833ee3b2eSAlexey Dobriyan 	return kstrtoll(s, base, res);
41933ee3b2eSAlexey Dobriyan }
42033ee3b2eSAlexey Dobriyan 
42133ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res)
42233ee3b2eSAlexey Dobriyan {
42333ee3b2eSAlexey Dobriyan 	return kstrtouint(s, base, res);
42433ee3b2eSAlexey Dobriyan }
42533ee3b2eSAlexey Dobriyan 
42633ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res)
42733ee3b2eSAlexey Dobriyan {
42833ee3b2eSAlexey Dobriyan 	return kstrtoint(s, base, res);
42933ee3b2eSAlexey Dobriyan }
43033ee3b2eSAlexey Dobriyan 
43133ee3b2eSAlexey Dobriyan int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
43233ee3b2eSAlexey Dobriyan int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
43333ee3b2eSAlexey Dobriyan int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
43433ee3b2eSAlexey Dobriyan int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
435ef951599SKees Cook int __must_check kstrtobool(const char *s, bool *res);
43633ee3b2eSAlexey Dobriyan 
437c196e32aSAlexey Dobriyan int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
438c196e32aSAlexey Dobriyan int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
439c196e32aSAlexey Dobriyan int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res);
440c196e32aSAlexey Dobriyan int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res);
441c196e32aSAlexey Dobriyan int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res);
442c196e32aSAlexey Dobriyan int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res);
443c196e32aSAlexey Dobriyan int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res);
444c196e32aSAlexey Dobriyan int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
445c196e32aSAlexey Dobriyan int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
446c196e32aSAlexey Dobriyan int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
447ef951599SKees Cook int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
448c196e32aSAlexey Dobriyan 
449c196e32aSAlexey Dobriyan static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res)
450c196e32aSAlexey Dobriyan {
451c196e32aSAlexey Dobriyan 	return kstrtoull_from_user(s, count, base, res);
452c196e32aSAlexey Dobriyan }
453c196e32aSAlexey Dobriyan 
454c196e32aSAlexey Dobriyan static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res)
455c196e32aSAlexey Dobriyan {
456c196e32aSAlexey Dobriyan 	return kstrtoll_from_user(s, count, base, res);
457c196e32aSAlexey Dobriyan }
458c196e32aSAlexey Dobriyan 
459c196e32aSAlexey Dobriyan static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res)
460c196e32aSAlexey Dobriyan {
461c196e32aSAlexey Dobriyan 	return kstrtouint_from_user(s, count, base, res);
462c196e32aSAlexey Dobriyan }
463c196e32aSAlexey Dobriyan 
464c196e32aSAlexey Dobriyan static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res)
465c196e32aSAlexey Dobriyan {
466c196e32aSAlexey Dobriyan 	return kstrtoint_from_user(s, count, base, res);
467c196e32aSAlexey Dobriyan }
468c196e32aSAlexey Dobriyan 
46967d0a075SJoe Perches /* Obsolete, do not use.  Use kstrto<foo> instead */
47067d0a075SJoe Perches 
4711da177e4SLinus Torvalds extern unsigned long simple_strtoul(const char *,char **,unsigned int);
4721da177e4SLinus Torvalds extern long simple_strtol(const char *,char **,unsigned int);
4731da177e4SLinus Torvalds extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
4741da177e4SLinus Torvalds extern long long simple_strtoll(const char *,char **,unsigned int);
47533ee3b2eSAlexey Dobriyan 
476d1be35cbSAndrei Vagin extern int num_to_str(char *buf, int size,
477d1be35cbSAndrei Vagin 		      unsigned long long num, unsigned int width);
4781ac101a5SKAMEZAWA Hiroyuki 
47967d0a075SJoe Perches /* lib/printf utilities */
48067d0a075SJoe Perches 
481b9075fa9SJoe Perches extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...);
482b9075fa9SJoe Perches extern __printf(2, 0) int vsprintf(char *buf, const char *, va_list);
483b9075fa9SJoe Perches extern __printf(3, 4)
484b9075fa9SJoe Perches int snprintf(char *buf, size_t size, const char *fmt, ...);
485b9075fa9SJoe Perches extern __printf(3, 0)
486b9075fa9SJoe Perches int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
487b9075fa9SJoe Perches extern __printf(3, 4)
488b9075fa9SJoe Perches int scnprintf(char *buf, size_t size, const char *fmt, ...);
489b9075fa9SJoe Perches extern __printf(3, 0)
490b9075fa9SJoe Perches int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
49148a27055SRasmus Villemoes extern __printf(2, 3) __malloc
492b9075fa9SJoe Perches char *kasprintf(gfp_t gfp, const char *fmt, ...);
49348a27055SRasmus Villemoes extern __printf(2, 0) __malloc
4948db14860SNicolas Iooss char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
4950a9df786SRasmus Villemoes extern __printf(2, 0)
4960a9df786SRasmus Villemoes const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args);
4971da177e4SLinus Torvalds 
4986061d949SJoe Perches extern __scanf(2, 3)
4996061d949SJoe Perches int sscanf(const char *, const char *, ...);
5006061d949SJoe Perches extern __scanf(2, 0)
5016061d949SJoe Perches int vsscanf(const char *, const char *, va_list);
5021da177e4SLinus Torvalds 
5031da177e4SLinus Torvalds extern int get_option(char **str, int *pint);
5041da177e4SLinus Torvalds extern char *get_options(const char *str, int nints, int *ints);
505d974ae37SJeremy Fitzhardinge extern unsigned long long memparse(const char *ptr, char **retptr);
5066ccc72b8SDave Young extern bool parse_option_str(const char *str, const char *option);
507f51b17c8SBaoquan He extern char *next_arg(char *args, char **param, char **val);
5081da177e4SLinus Torvalds 
5095e376613STrent Piepho extern int core_kernel_text(unsigned long addr);
5109fbcc57aSJosh Poimboeuf extern int init_kernel_text(unsigned long addr);
511cdbe61bfSSteven Rostedt extern int core_kernel_data(unsigned long addr);
5121da177e4SLinus Torvalds extern int __kernel_text_address(unsigned long addr);
5131da177e4SLinus Torvalds extern int kernel_text_address(unsigned long addr);
514ab7476cfSArjan van de Ven extern int func_ptr_is_kernel_text(void *ptr);
515ab7476cfSArjan van de Ven 
5161da177e4SLinus Torvalds unsigned long int_sqrt(unsigned long);
5171da177e4SLinus Torvalds 
51847a36163SCrt Mori #if BITS_PER_LONG < 64
51947a36163SCrt Mori u32 int_sqrt64(u64 x);
52047a36163SCrt Mori #else
52147a36163SCrt Mori static inline u32 int_sqrt64(u64 x)
52247a36163SCrt Mori {
52347a36163SCrt Mori 	return (u32)int_sqrt(x);
52447a36163SCrt Mori }
52547a36163SCrt Mori #endif
52647a36163SCrt Mori 
5271da177e4SLinus Torvalds extern void bust_spinlocks(int yes);
5281da177e4SLinus Torvalds extern int oops_in_progress;		/* If set, an oops, panic(), BUG() or die() is in progress */
529aa727107SAdrian Bunk extern int panic_timeout;
5301da177e4SLinus Torvalds extern int panic_on_oops;
5318da5addaSDon Zickus extern int panic_on_unrecovered_nmi;
5325211a242SKurt Garloff extern int panic_on_io_nmi;
5339e3961a0SPrarit Bhargava extern int panic_on_warn;
534088e9d25SDaniel Bristot de Oliveira extern int sysctl_panic_on_rcu_stall;
53555af7796SMitsuo Hayasaka extern int sysctl_panic_on_stackoverflow;
5365375b708SHATAYAMA Daisuke 
5375375b708SHATAYAMA Daisuke extern bool crash_kexec_post_notifiers;
5385375b708SHATAYAMA Daisuke 
5395800dc3cSJason Baron /*
5401717f209SHidehiro Kawai  * panic_cpu is used for synchronizing panic() and crash_kexec() execution. It
5411717f209SHidehiro Kawai  * holds a CPU number which is executing panic() currently. A value of
5421717f209SHidehiro Kawai  * PANIC_CPU_INVALID means no CPU has entered panic() or crash_kexec().
5431717f209SHidehiro Kawai  */
5441717f209SHidehiro Kawai extern atomic_t panic_cpu;
5451717f209SHidehiro Kawai #define PANIC_CPU_INVALID	-1
5461717f209SHidehiro Kawai 
5471717f209SHidehiro Kawai /*
5485800dc3cSJason Baron  * Only to be used by arch init code. If the user over-wrote the default
5495800dc3cSJason Baron  * CONFIG_PANIC_TIMEOUT, honor it.
5505800dc3cSJason Baron  */
5515800dc3cSJason Baron static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout)
5525800dc3cSJason Baron {
5535800dc3cSJason Baron 	if (panic_timeout == arch_default_timeout)
5545800dc3cSJason Baron 		panic_timeout = timeout;
5555800dc3cSJason Baron }
5561da177e4SLinus Torvalds extern const char *print_tainted(void);
557373d4d09SRusty Russell enum lockdep_ok {
558373d4d09SRusty Russell 	LOCKDEP_STILL_OK,
559373d4d09SRusty Russell 	LOCKDEP_NOW_UNRELIABLE
560373d4d09SRusty Russell };
561373d4d09SRusty Russell extern void add_taint(unsigned flag, enum lockdep_ok);
56225ddbb18SAndi Kleen extern int test_taint(unsigned flag);
56325ddbb18SAndi Kleen extern unsigned long get_taint(void);
564b920de1bSDavid Howells extern int root_mountflags;
5651da177e4SLinus Torvalds 
5662ce802f6STejun Heo extern bool early_boot_irqs_disabled;
5672ce802f6STejun Heo 
56869a78ff2SThomas Gleixner /*
56969a78ff2SThomas Gleixner  * Values used for system_state. Ordering of the states must not be changed
57069a78ff2SThomas Gleixner  * as code checks for <, <=, >, >= STATE.
57169a78ff2SThomas Gleixner  */
5721da177e4SLinus Torvalds extern enum system_states {
5731da177e4SLinus Torvalds 	SYSTEM_BOOTING,
57469a78ff2SThomas Gleixner 	SYSTEM_SCHEDULING,
5751da177e4SLinus Torvalds 	SYSTEM_RUNNING,
5761da177e4SLinus Torvalds 	SYSTEM_HALT,
5771da177e4SLinus Torvalds 	SYSTEM_POWER_OFF,
5781da177e4SLinus Torvalds 	SYSTEM_RESTART,
579c1a957d1SThomas Gleixner 	SYSTEM_SUSPEND,
5801da177e4SLinus Torvalds } system_state;
5811da177e4SLinus Torvalds 
58247d4b263SKees Cook /* This cannot be an enum because some may be used in assembly source. */
58325ddbb18SAndi Kleen #define TAINT_PROPRIETARY_MODULE	0
58425ddbb18SAndi Kleen #define TAINT_FORCED_MODULE		1
5858c90487cSDave Jones #define TAINT_CPU_OUT_OF_SPEC		2
58625ddbb18SAndi Kleen #define TAINT_FORCED_RMMOD		3
58725ddbb18SAndi Kleen #define TAINT_MACHINE_CHECK		4
58825ddbb18SAndi Kleen #define TAINT_BAD_PAGE			5
58925ddbb18SAndi Kleen #define TAINT_USER			6
59025ddbb18SAndi Kleen #define TAINT_DIE			7
59125ddbb18SAndi Kleen #define TAINT_OVERRIDDEN_ACPI_TABLE	8
59225ddbb18SAndi Kleen #define TAINT_WARN			9
59326e9a397SLinus Torvalds #define TAINT_CRAP			10
59492946bc7SBen Hutchings #define TAINT_FIRMWARE_WORKAROUND	11
5952449b8baSBen Hutchings #define TAINT_OOT_MODULE		12
59666cc69e3SMathieu Desnoyers #define TAINT_UNSIGNED_MODULE		13
59769361eefSJosh Hunt #define TAINT_SOFTLOCKUP		14
598c5f45465SSeth Jennings #define TAINT_LIVEPATCH			15
5994efb442cSBorislav Petkov #define TAINT_AUX			16
600bc4f2f54SKees Cook #define TAINT_RANDSTRUCT		17
601bc4f2f54SKees Cook #define TAINT_FLAGS_COUNT		18
6027fd8329bSPetr Mladek 
6037fd8329bSPetr Mladek struct taint_flag {
6045eb7c0d0SLarry Finger 	char c_true;	/* character printed when tainted */
6055eb7c0d0SLarry Finger 	char c_false;	/* character printed when not tainted */
6067fd8329bSPetr Mladek 	bool module;	/* also show as a per-module taint flag */
6077fd8329bSPetr Mladek };
6087fd8329bSPetr Mladek 
6097fd8329bSPetr Mladek extern const struct taint_flag taint_flags[TAINT_FLAGS_COUNT];
6101da177e4SLinus Torvalds 
6113fc95772SHarvey Harrison extern const char hex_asc[];
6123fc95772SHarvey Harrison #define hex_asc_lo(x)	hex_asc[((x) & 0x0f)]
6133fc95772SHarvey Harrison #define hex_asc_hi(x)	hex_asc[((x) & 0xf0) >> 4]
6143fc95772SHarvey Harrison 
61555036ba7SAndy Shevchenko static inline char *hex_byte_pack(char *buf, u8 byte)
6163fc95772SHarvey Harrison {
6173fc95772SHarvey Harrison 	*buf++ = hex_asc_hi(byte);
6183fc95772SHarvey Harrison 	*buf++ = hex_asc_lo(byte);
6193fc95772SHarvey Harrison 	return buf;
6203fc95772SHarvey Harrison }
62199eaf3c4SRandy Dunlap 
622c26d436cSAndre Naujoks extern const char hex_asc_upper[];
623c26d436cSAndre Naujoks #define hex_asc_upper_lo(x)	hex_asc_upper[((x) & 0x0f)]
624c26d436cSAndre Naujoks #define hex_asc_upper_hi(x)	hex_asc_upper[((x) & 0xf0) >> 4]
625c26d436cSAndre Naujoks 
626c26d436cSAndre Naujoks static inline char *hex_byte_pack_upper(char *buf, u8 byte)
627c26d436cSAndre Naujoks {
628c26d436cSAndre Naujoks 	*buf++ = hex_asc_upper_hi(byte);
629c26d436cSAndre Naujoks 	*buf++ = hex_asc_upper_lo(byte);
630c26d436cSAndre Naujoks 	return buf;
631c26d436cSAndre Naujoks }
632c26d436cSAndre Naujoks 
63390378889SAndy Shevchenko extern int hex_to_bin(char ch);
634b7804983SMimi Zohar extern int __must_check hex2bin(u8 *dst, const char *src, size_t count);
63553d91c5cSDavid Howells extern char *bin2hex(char *dst, const void *src, size_t count);
63690378889SAndy Shevchenko 
637a69f5edbSJoe Perches bool mac_pton(const char *s, u8 *mac);
6384cd5773aSAndy Shevchenko 
6398a64f336SJoe Perches /*
640526211bcSIngo Molnar  * General tracing related utility functions - trace_printk(),
6412002c258SSteven Rostedt  * tracing_on/tracing_off and tracing_start()/tracing_stop
6422002c258SSteven Rostedt  *
6432002c258SSteven Rostedt  * Use tracing_on/tracing_off when you want to quickly turn on or off
6442002c258SSteven Rostedt  * tracing. It simply enables or disables the recording of the trace events.
645156f5a78SGeunSik Lim  * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
6462002c258SSteven Rostedt  * file, which gives a means for the kernel and userspace to interact.
6472002c258SSteven Rostedt  * Place a tracing_off() in the kernel where you want tracing to end.
6482002c258SSteven Rostedt  * From user space, examine the trace, and then echo 1 > tracing_on
6492002c258SSteven Rostedt  * to continue tracing.
6502002c258SSteven Rostedt  *
6512002c258SSteven Rostedt  * tracing_stop/tracing_start has slightly more overhead. It is used
6522002c258SSteven Rostedt  * by things like suspend to ram where disabling the recording of the
6532002c258SSteven Rostedt  * trace is not enough, but tracing must actually stop because things
6542002c258SSteven Rostedt  * like calling smp_processor_id() may crash the system.
6552002c258SSteven Rostedt  *
6562002c258SSteven Rostedt  * Most likely, you want to use tracing_on/tracing_off.
657526211bcSIngo Molnar  */
658cecbca96SFrederic Weisbecker 
659cecbca96SFrederic Weisbecker enum ftrace_dump_mode {
660cecbca96SFrederic Weisbecker 	DUMP_NONE,
661cecbca96SFrederic Weisbecker 	DUMP_ALL,
662cecbca96SFrederic Weisbecker 	DUMP_ORIG,
663cecbca96SFrederic Weisbecker };
664cecbca96SFrederic Weisbecker 
665526211bcSIngo Molnar #ifdef CONFIG_TRACING
66693d68e52SSteven Rostedt void tracing_on(void);
66793d68e52SSteven Rostedt void tracing_off(void);
66893d68e52SSteven Rostedt int tracing_is_on(void);
669ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot(void);
670ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot_alloc(void);
67193d68e52SSteven Rostedt 
672526211bcSIngo Molnar extern void tracing_start(void);
673526211bcSIngo Molnar extern void tracing_stop(void);
674526211bcSIngo Molnar 
675b9075fa9SJoe Perches static inline __printf(1, 2)
676b9075fa9SJoe Perches void ____trace_printk_check_format(const char *fmt, ...)
677769b0441SFrederic Weisbecker {
678769b0441SFrederic Weisbecker }
679769b0441SFrederic Weisbecker #define __trace_printk_check_format(fmt, args...)			\
680769b0441SFrederic Weisbecker do {									\
681769b0441SFrederic Weisbecker 	if (0)								\
682769b0441SFrederic Weisbecker 		____trace_printk_check_format(fmt, ##args);		\
683769b0441SFrederic Weisbecker } while (0)
684769b0441SFrederic Weisbecker 
685526211bcSIngo Molnar /**
686526211bcSIngo Molnar  * trace_printk - printf formatting in the ftrace buffer
687526211bcSIngo Molnar  * @fmt: the printf format for printing
688526211bcSIngo Molnar  *
689e8c97af0SRandy Dunlap  * Note: __trace_printk is an internal function for trace_printk() and
690e8c97af0SRandy Dunlap  *       the @ip is passed in via the trace_printk() macro.
691526211bcSIngo Molnar  *
692526211bcSIngo Molnar  * This function allows a kernel developer to debug fast path sections
693526211bcSIngo Molnar  * that printk is not appropriate for. By scattering in various
694526211bcSIngo Molnar  * printk like tracing in the code, a developer can quickly see
695526211bcSIngo Molnar  * where problems are occurring.
696526211bcSIngo Molnar  *
697526211bcSIngo Molnar  * This is intended as a debugging tool for the developer only.
698526211bcSIngo Molnar  * Please refrain from leaving trace_printks scattered around in
69909ae7234SSteven Rostedt (Red Hat)  * your code. (Extra memory is used for special buffers that are
700e8c97af0SRandy Dunlap  * allocated when trace_printk() is used.)
7019d3c752cSSteven Rostedt (Red Hat)  *
7028730662dSWei Wang  * A little optimization trick is done here. If there's only one
7039d3c752cSSteven Rostedt (Red Hat)  * argument, there's no need to scan the string for printf formats.
7049d3c752cSSteven Rostedt (Red Hat)  * The trace_puts() will suffice. But how can we take advantage of
7059d3c752cSSteven Rostedt (Red Hat)  * using trace_puts() when trace_printk() has only one argument?
7069d3c752cSSteven Rostedt (Red Hat)  * By stringifying the args and checking the size we can tell
7079d3c752cSSteven Rostedt (Red Hat)  * whether or not there are args. __stringify((__VA_ARGS__)) will
7089d3c752cSSteven Rostedt (Red Hat)  * turn into "()\0" with a size of 3 when there are no args, anything
7099d3c752cSSteven Rostedt (Red Hat)  * else will be bigger. All we need to do is define a string to this,
7109d3c752cSSteven Rostedt (Red Hat)  * and then take its size and compare to 3. If it's bigger, use
7119d3c752cSSteven Rostedt (Red Hat)  * do_trace_printk() otherwise, optimize it to trace_puts(). Then just
7129d3c752cSSteven Rostedt (Red Hat)  * let gcc optimize the rest.
713526211bcSIngo Molnar  */
714769b0441SFrederic Weisbecker 
7159d3c752cSSteven Rostedt (Red Hat) #define trace_printk(fmt, ...)				\
7169d3c752cSSteven Rostedt (Red Hat) do {							\
7179d3c752cSSteven Rostedt (Red Hat) 	char _______STR[] = __stringify((__VA_ARGS__));	\
7189d3c752cSSteven Rostedt (Red Hat) 	if (sizeof(_______STR) > 3)			\
7199d3c752cSSteven Rostedt (Red Hat) 		do_trace_printk(fmt, ##__VA_ARGS__);	\
7209d3c752cSSteven Rostedt (Red Hat) 	else						\
7219d3c752cSSteven Rostedt (Red Hat) 		trace_puts(fmt);			\
7229d3c752cSSteven Rostedt (Red Hat) } while (0)
7239d3c752cSSteven Rostedt (Red Hat) 
7249d3c752cSSteven Rostedt (Red Hat) #define do_trace_printk(fmt, args...)					\
725769b0441SFrederic Weisbecker do {									\
7263debb0a9SSteven Rostedt (Red Hat) 	static const char *trace_printk_fmt __used			\
72748ead020SFrederic Weisbecker 		__attribute__((section("__trace_printk_fmt"))) =	\
72848ead020SFrederic Weisbecker 		__builtin_constant_p(fmt) ? fmt : NULL;			\
72948ead020SFrederic Weisbecker 									\
73007d777feSSteven Rostedt 	__trace_printk_check_format(fmt, ##args);			\
73107d777feSSteven Rostedt 									\
73207d777feSSteven Rostedt 	if (__builtin_constant_p(fmt))					\
73348ead020SFrederic Weisbecker 		__trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args);	\
73407d777feSSteven Rostedt 	else								\
73548ead020SFrederic Weisbecker 		__trace_printk(_THIS_IP_, fmt, ##args);			\
736769b0441SFrederic Weisbecker } while (0)
737769b0441SFrederic Weisbecker 
738b9075fa9SJoe Perches extern __printf(2, 3)
739b9075fa9SJoe Perches int __trace_bprintk(unsigned long ip, const char *fmt, ...);
74048ead020SFrederic Weisbecker 
741b9075fa9SJoe Perches extern __printf(2, 3)
742b9075fa9SJoe Perches int __trace_printk(unsigned long ip, const char *fmt, ...);
743769b0441SFrederic Weisbecker 
74409ae7234SSteven Rostedt (Red Hat) /**
74509ae7234SSteven Rostedt (Red Hat)  * trace_puts - write a string into the ftrace buffer
74609ae7234SSteven Rostedt (Red Hat)  * @str: the string to record
74709ae7234SSteven Rostedt (Red Hat)  *
74809ae7234SSteven Rostedt (Red Hat)  * Note: __trace_bputs is an internal function for trace_puts and
74909ae7234SSteven Rostedt (Red Hat)  *       the @ip is passed in via the trace_puts macro.
75009ae7234SSteven Rostedt (Red Hat)  *
75109ae7234SSteven Rostedt (Red Hat)  * This is similar to trace_printk() but is made for those really fast
752e8c97af0SRandy Dunlap  * paths that a developer wants the least amount of "Heisenbug" effects,
75309ae7234SSteven Rostedt (Red Hat)  * where the processing of the print format is still too much.
75409ae7234SSteven Rostedt (Red Hat)  *
75509ae7234SSteven Rostedt (Red Hat)  * This function allows a kernel developer to debug fast path sections
75609ae7234SSteven Rostedt (Red Hat)  * that printk is not appropriate for. By scattering in various
75709ae7234SSteven Rostedt (Red Hat)  * printk like tracing in the code, a developer can quickly see
75809ae7234SSteven Rostedt (Red Hat)  * where problems are occurring.
75909ae7234SSteven Rostedt (Red Hat)  *
76009ae7234SSteven Rostedt (Red Hat)  * This is intended as a debugging tool for the developer only.
76109ae7234SSteven Rostedt (Red Hat)  * Please refrain from leaving trace_puts scattered around in
76209ae7234SSteven Rostedt (Red Hat)  * your code. (Extra memory is used for special buffers that are
763e8c97af0SRandy Dunlap  * allocated when trace_puts() is used.)
76409ae7234SSteven Rostedt (Red Hat)  *
76509ae7234SSteven Rostedt (Red Hat)  * Returns: 0 if nothing was written, positive # if string was.
76609ae7234SSteven Rostedt (Red Hat)  *  (1 when __trace_bputs is used, strlen(str) when __trace_puts is used)
76709ae7234SSteven Rostedt (Red Hat)  */
76809ae7234SSteven Rostedt (Red Hat) 
76909ae7234SSteven Rostedt (Red Hat) #define trace_puts(str) ({						\
7703debb0a9SSteven Rostedt (Red Hat) 	static const char *trace_printk_fmt __used			\
77109ae7234SSteven Rostedt (Red Hat) 		__attribute__((section("__trace_printk_fmt"))) =	\
77209ae7234SSteven Rostedt (Red Hat) 		__builtin_constant_p(str) ? str : NULL;			\
77309ae7234SSteven Rostedt (Red Hat) 									\
77409ae7234SSteven Rostedt (Red Hat) 	if (__builtin_constant_p(str))					\
77509ae7234SSteven Rostedt (Red Hat) 		__trace_bputs(_THIS_IP_, trace_printk_fmt);		\
77609ae7234SSteven Rostedt (Red Hat) 	else								\
77709ae7234SSteven Rostedt (Red Hat) 		__trace_puts(_THIS_IP_, str, strlen(str));		\
77809ae7234SSteven Rostedt (Red Hat) })
779bcf312cfSSteven Rostedt extern int __trace_bputs(unsigned long ip, const char *str);
780bcf312cfSSteven Rostedt extern int __trace_puts(unsigned long ip, const char *str, int size);
78109ae7234SSteven Rostedt (Red Hat) 
782c142be8eSSteven Rostedt (Red Hat) extern void trace_dump_stack(int skip);
78303889384SSteven Rostedt 
78448ead020SFrederic Weisbecker /*
78548ead020SFrederic Weisbecker  * The double __builtin_constant_p is because gcc will give us an error
78648ead020SFrederic Weisbecker  * if we try to allocate the static variable to fmt if it is not a
78748ead020SFrederic Weisbecker  * constant. Even with the outer if statement.
78848ead020SFrederic Weisbecker  */
789769b0441SFrederic Weisbecker #define ftrace_vprintk(fmt, vargs)					\
790769b0441SFrederic Weisbecker do {									\
79148ead020SFrederic Weisbecker 	if (__builtin_constant_p(fmt)) {				\
7923debb0a9SSteven Rostedt (Red Hat) 		static const char *trace_printk_fmt __used		\
79348ead020SFrederic Weisbecker 		  __attribute__((section("__trace_printk_fmt"))) =	\
79448ead020SFrederic Weisbecker 			__builtin_constant_p(fmt) ? fmt : NULL;		\
7957bffc23eSIngo Molnar 									\
79648ead020SFrederic Weisbecker 		__ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs);	\
79748ead020SFrederic Weisbecker 	} else								\
79848ead020SFrederic Weisbecker 		__ftrace_vprintk(_THIS_IP_, fmt, vargs);		\
799769b0441SFrederic Weisbecker } while (0)
800769b0441SFrederic Weisbecker 
8018db14860SNicolas Iooss extern __printf(2, 0) int
80248ead020SFrederic Weisbecker __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
80348ead020SFrederic Weisbecker 
8048db14860SNicolas Iooss extern __printf(2, 0) int
805526211bcSIngo Molnar __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
806769b0441SFrederic Weisbecker 
807cecbca96SFrederic Weisbecker extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
808526211bcSIngo Molnar #else
809526211bcSIngo Molnar static inline void tracing_start(void) { }
810526211bcSIngo Molnar static inline void tracing_stop(void) { }
811e67bc51eSDhaval Giani static inline void trace_dump_stack(int skip) { }
81293d68e52SSteven Rostedt 
81393d68e52SSteven Rostedt static inline void tracing_on(void) { }
81493d68e52SSteven Rostedt static inline void tracing_off(void) { }
81593d68e52SSteven Rostedt static inline int tracing_is_on(void) { return 0; }
816ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot(void) { }
817ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot_alloc(void) { }
81893d68e52SSteven Rostedt 
81960efc15aSMichal Hocko static inline __printf(1, 2)
82060efc15aSMichal Hocko int trace_printk(const char *fmt, ...)
821526211bcSIngo Molnar {
822526211bcSIngo Molnar 	return 0;
823526211bcSIngo Molnar }
8248db14860SNicolas Iooss static __printf(1, 0) inline int
825526211bcSIngo Molnar ftrace_vprintk(const char *fmt, va_list ap)
826526211bcSIngo Molnar {
827526211bcSIngo Molnar 	return 0;
828526211bcSIngo Molnar }
829cecbca96SFrederic Weisbecker static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
830769b0441SFrederic Weisbecker #endif /* CONFIG_TRACING */
831526211bcSIngo Molnar 
832526211bcSIngo Molnar /*
8333c8ba0d6SKees Cook  * min()/max()/clamp() macros must accomplish three things:
8343c8ba0d6SKees Cook  *
8353c8ba0d6SKees Cook  * - avoid multiple evaluations of the arguments (so side-effects like
8363c8ba0d6SKees Cook  *   "x++" happen only once) when non-constant.
8373c8ba0d6SKees Cook  * - perform strict type-checking (to generate warnings instead of
8383c8ba0d6SKees Cook  *   nasty runtime surprises). See the "unnecessary" pointer comparison
8393c8ba0d6SKees Cook  *   in __typecheck().
8403c8ba0d6SKees Cook  * - retain result as a constant expressions when called with only
8413c8ba0d6SKees Cook  *   constant expressions (to avoid tripping VLA warnings in stack
8423c8ba0d6SKees Cook  *   allocation usage).
8431da177e4SLinus Torvalds  */
8443c8ba0d6SKees Cook #define __typecheck(x, y) \
8453c8ba0d6SKees Cook 		(!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
8463c8ba0d6SKees Cook 
8473c8ba0d6SKees Cook /*
8483c8ba0d6SKees Cook  * This returns a constant expression while determining if an argument is
8493c8ba0d6SKees Cook  * a constant expression, most importantly without evaluating the argument.
8503c8ba0d6SKees Cook  * Glory to Martin Uecker <[email protected]>
8513c8ba0d6SKees Cook  */
8523c8ba0d6SKees Cook #define __is_constexpr(x) \
8533c8ba0d6SKees Cook 	(sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))
8543c8ba0d6SKees Cook 
8553c8ba0d6SKees Cook #define __no_side_effects(x, y) \
8563c8ba0d6SKees Cook 		(__is_constexpr(x) && __is_constexpr(y))
8573c8ba0d6SKees Cook 
8583c8ba0d6SKees Cook #define __safe_cmp(x, y) \
8593c8ba0d6SKees Cook 		(__typecheck(x, y) && __no_side_effects(x, y))
8603c8ba0d6SKees Cook 
8613c8ba0d6SKees Cook #define __cmp(x, y, op)	((x) op (y) ? (x) : (y))
8623c8ba0d6SKees Cook 
863e9092d0dSLinus Torvalds #define __cmp_once(x, y, unique_x, unique_y, op) ({	\
864e9092d0dSLinus Torvalds 		typeof(x) unique_x = (x);		\
865e9092d0dSLinus Torvalds 		typeof(y) unique_y = (y);		\
866e9092d0dSLinus Torvalds 		__cmp(unique_x, unique_y, op); })
8673c8ba0d6SKees Cook 
8683c8ba0d6SKees Cook #define __careful_cmp(x, y, op) \
8693c8ba0d6SKees Cook 	__builtin_choose_expr(__safe_cmp(x, y), \
870e9092d0dSLinus Torvalds 		__cmp(x, y, op), \
871e9092d0dSLinus Torvalds 		__cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op))
872e8c97af0SRandy Dunlap 
873e8c97af0SRandy Dunlap /**
874e8c97af0SRandy Dunlap  * min - return minimum of two values of the same or compatible types
875e8c97af0SRandy Dunlap  * @x: first value
876e8c97af0SRandy Dunlap  * @y: second value
877e8c97af0SRandy Dunlap  */
8783c8ba0d6SKees Cook #define min(x, y)	__careful_cmp(x, y, <)
879e8c97af0SRandy Dunlap 
880e8c97af0SRandy Dunlap /**
881e8c97af0SRandy Dunlap  * max - return maximum of two values of the same or compatible types
882e8c97af0SRandy Dunlap  * @x: first value
883e8c97af0SRandy Dunlap  * @y: second value
884e8c97af0SRandy Dunlap  */
8853c8ba0d6SKees Cook #define max(x, y)	__careful_cmp(x, y, >)
886bdf4bbaaSHarvey Harrison 
887e8c97af0SRandy Dunlap /**
888e8c97af0SRandy Dunlap  * min3 - return minimum of three values
889e8c97af0SRandy Dunlap  * @x: first value
890e8c97af0SRandy Dunlap  * @y: second value
891e8c97af0SRandy Dunlap  * @z: third value
892e8c97af0SRandy Dunlap  */
8932e1d06e1SMichal Nazarewicz #define min3(x, y, z) min((typeof(x))min(x, y), z)
894e8c97af0SRandy Dunlap 
895e8c97af0SRandy Dunlap /**
896e8c97af0SRandy Dunlap  * max3 - return maximum of three values
897e8c97af0SRandy Dunlap  * @x: first value
898e8c97af0SRandy Dunlap  * @y: second value
899e8c97af0SRandy Dunlap  * @z: third value
900e8c97af0SRandy Dunlap  */
9012e1d06e1SMichal Nazarewicz #define max3(x, y, z) max((typeof(x))max(x, y), z)
902f27c85c5SHagen Paul Pfeifer 
903bdf4bbaaSHarvey Harrison /**
904c8bf1336SMartin K. Petersen  * min_not_zero - return the minimum that is _not_ zero, unless both are zero
905c8bf1336SMartin K. Petersen  * @x: value1
906c8bf1336SMartin K. Petersen  * @y: value2
907c8bf1336SMartin K. Petersen  */
908c8bf1336SMartin K. Petersen #define min_not_zero(x, y) ({			\
909c8bf1336SMartin K. Petersen 	typeof(x) __x = (x);			\
910c8bf1336SMartin K. Petersen 	typeof(y) __y = (y);			\
911c8bf1336SMartin K. Petersen 	__x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
912c8bf1336SMartin K. Petersen 
913c8bf1336SMartin K. Petersen /**
914bdf4bbaaSHarvey Harrison  * clamp - return a value clamped to a given range with strict typechecking
915bdf4bbaaSHarvey Harrison  * @val: current value
9162e1d06e1SMichal Nazarewicz  * @lo: lowest allowable value
9172e1d06e1SMichal Nazarewicz  * @hi: highest allowable value
918bdf4bbaaSHarvey Harrison  *
919e8c97af0SRandy Dunlap  * This macro does strict typechecking of @lo/@hi to make sure they are of the
920e8c97af0SRandy Dunlap  * same type as @val.  See the unnecessary pointer comparisons.
921bdf4bbaaSHarvey Harrison  */
9222e1d06e1SMichal Nazarewicz #define clamp(val, lo, hi) min((typeof(val))max(val, lo), hi)
9231da177e4SLinus Torvalds 
9241da177e4SLinus Torvalds /*
9251da177e4SLinus Torvalds  * ..and if you can't take the strict
9261da177e4SLinus Torvalds  * types, you can specify one yourself.
9271da177e4SLinus Torvalds  *
928bdf4bbaaSHarvey Harrison  * Or not use min/max/clamp at all, of course.
9291da177e4SLinus Torvalds  */
930e8c97af0SRandy Dunlap 
931e8c97af0SRandy Dunlap /**
932e8c97af0SRandy Dunlap  * min_t - return minimum of two values, using the specified type
933e8c97af0SRandy Dunlap  * @type: data type to use
934e8c97af0SRandy Dunlap  * @x: first value
935e8c97af0SRandy Dunlap  * @y: second value
936e8c97af0SRandy Dunlap  */
9373c8ba0d6SKees Cook #define min_t(type, x, y)	__careful_cmp((type)(x), (type)(y), <)
9381da177e4SLinus Torvalds 
939e8c97af0SRandy Dunlap /**
940e8c97af0SRandy Dunlap  * max_t - return maximum of two values, using the specified type
941e8c97af0SRandy Dunlap  * @type: data type to use
942e8c97af0SRandy Dunlap  * @x: first value
943e8c97af0SRandy Dunlap  * @y: second value
944e8c97af0SRandy Dunlap  */
9453c8ba0d6SKees Cook #define max_t(type, x, y)	__careful_cmp((type)(x), (type)(y), >)
946bdf4bbaaSHarvey Harrison 
947bdf4bbaaSHarvey Harrison /**
948bdf4bbaaSHarvey Harrison  * clamp_t - return a value clamped to a given range using a given type
949bdf4bbaaSHarvey Harrison  * @type: the type of variable to use
950bdf4bbaaSHarvey Harrison  * @val: current value
951c185b07fSMichal Nazarewicz  * @lo: minimum allowable value
952c185b07fSMichal Nazarewicz  * @hi: maximum allowable value
953bdf4bbaaSHarvey Harrison  *
954bdf4bbaaSHarvey Harrison  * This macro does no typechecking and uses temporary variables of type
955e8c97af0SRandy Dunlap  * @type to make all the comparisons.
956bdf4bbaaSHarvey Harrison  */
957c185b07fSMichal Nazarewicz #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi)
958bdf4bbaaSHarvey Harrison 
959bdf4bbaaSHarvey Harrison /**
960bdf4bbaaSHarvey Harrison  * clamp_val - return a value clamped to a given range using val's type
961bdf4bbaaSHarvey Harrison  * @val: current value
962c185b07fSMichal Nazarewicz  * @lo: minimum allowable value
963c185b07fSMichal Nazarewicz  * @hi: maximum allowable value
964bdf4bbaaSHarvey Harrison  *
965bdf4bbaaSHarvey Harrison  * This macro does no typechecking and uses temporary variables of whatever
966e8c97af0SRandy Dunlap  * type the input argument @val is.  This is useful when @val is an unsigned
967e8c97af0SRandy Dunlap  * type and @lo and @hi are literals that will otherwise be assigned a signed
968bdf4bbaaSHarvey Harrison  * integer type.
969bdf4bbaaSHarvey Harrison  */
970c185b07fSMichal Nazarewicz #define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
9711da177e4SLinus Torvalds 
97291f68b73SWu Fengguang 
973e8c97af0SRandy Dunlap /**
974e8c97af0SRandy Dunlap  * swap - swap values of @a and @b
975e8c97af0SRandy Dunlap  * @a: first value
976e8c97af0SRandy Dunlap  * @b: second value
97791f68b73SWu Fengguang  */
978ac7b9004SPeter Zijlstra #define swap(a, b) \
979ac7b9004SPeter Zijlstra 	do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
98091f68b73SWu Fengguang 
981cf14f27fSAlexei Starovoitov /* This counts to 12. Any more, it will return 13th argument. */
982cf14f27fSAlexei Starovoitov #define __COUNT_ARGS(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _n, X...) _n
983cf14f27fSAlexei Starovoitov #define COUNT_ARGS(X...) __COUNT_ARGS(, ##X, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
984cf14f27fSAlexei Starovoitov 
985cf14f27fSAlexei Starovoitov #define __CONCAT(a, b) a ## b
986cf14f27fSAlexei Starovoitov #define CONCATENATE(a, b) __CONCAT(a, b)
987cf14f27fSAlexei Starovoitov 
9881da177e4SLinus Torvalds /**
9891da177e4SLinus Torvalds  * container_of - cast a member of a structure out to the containing structure
9901da177e4SLinus Torvalds  * @ptr:	the pointer to the member.
9911da177e4SLinus Torvalds  * @type:	the type of the container struct this is embedded in.
9921da177e4SLinus Torvalds  * @member:	the name of the member within the struct.
9931da177e4SLinus Torvalds  *
9941da177e4SLinus Torvalds  */
9951da177e4SLinus Torvalds #define container_of(ptr, type, member) ({				\
996c7acec71SIan Abbott 	void *__mptr = (void *)(ptr);					\
997c7acec71SIan Abbott 	BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) &&	\
998c7acec71SIan Abbott 			 !__same_type(*(ptr), void),			\
999c7acec71SIan Abbott 			 "pointer type mismatch in container_of()");	\
1000c7acec71SIan Abbott 	((type *)(__mptr - offsetof(type, member))); })
10011da177e4SLinus Torvalds 
100205e6557bSNeilBrown /**
100305e6557bSNeilBrown  * container_of_safe - cast a member of a structure out to the containing structure
100405e6557bSNeilBrown  * @ptr:	the pointer to the member.
100505e6557bSNeilBrown  * @type:	the type of the container struct this is embedded in.
100605e6557bSNeilBrown  * @member:	the name of the member within the struct.
100705e6557bSNeilBrown  *
100805e6557bSNeilBrown  * If IS_ERR_OR_NULL(ptr), ptr is returned unchanged.
100905e6557bSNeilBrown  */
101005e6557bSNeilBrown #define container_of_safe(ptr, type, member) ({				\
101105e6557bSNeilBrown 	void *__mptr = (void *)(ptr);					\
101205e6557bSNeilBrown 	BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) &&	\
101305e6557bSNeilBrown 			 !__same_type(*(ptr), void),			\
101405e6557bSNeilBrown 			 "pointer type mismatch in container_of()");	\
1015227abcc6SDan Carpenter 	IS_ERR_OR_NULL(__mptr) ? ERR_CAST(__mptr) :			\
101605e6557bSNeilBrown 		((type *)(__mptr - offsetof(type, member))); })
101705e6557bSNeilBrown 
1018b9d4f426SArnaud Lacombe /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
1019b9d4f426SArnaud Lacombe #ifdef CONFIG_FTRACE_MCOUNT_RECORD
1020b9d4f426SArnaud Lacombe # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
1021b9d4f426SArnaud Lacombe #endif
10229d00f92fSWANG Cong 
102358f86cc8SRusty Russell /* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */
102458f86cc8SRusty Russell #define VERIFY_OCTAL_PERMISSIONS(perms)						\
102558f86cc8SRusty Russell 	(BUILD_BUG_ON_ZERO((perms) < 0) +					\
102658f86cc8SRusty Russell 	 BUILD_BUG_ON_ZERO((perms) > 0777) +					\
102728b8d0c8SGobinda Charan Maji 	 /* USER_READABLE >= GROUP_READABLE >= OTHER_READABLE */		\
102828b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 6) & 4) < (((perms) >> 3) & 4)) +	\
102928b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 3) & 4) < ((perms) & 4)) +		\
103028b8d0c8SGobinda Charan Maji 	 /* USER_WRITABLE >= GROUP_WRITABLE */					\
103128b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 6) & 2) < (((perms) >> 3) & 2)) +	\
103228b8d0c8SGobinda Charan Maji 	 /* OTHER_WRITABLE?  Generally considered a bad idea. */		\
103337549e94SRusty Russell 	 BUILD_BUG_ON_ZERO((perms) & 2) +					\
103458f86cc8SRusty Russell 	 (perms))
10351da177e4SLinus Torvalds #endif
1036