xref: /linux-6.15/include/linux/kernel.h (revision ef91bb19)
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>
754d50897SMasahiro Yamada #include <linux/limits.h>
81da177e4SLinus Torvalds #include <linux/linkage.h>
91da177e4SLinus Torvalds #include <linux/stddef.h>
101da177e4SLinus Torvalds #include <linux/types.h>
111da177e4SLinus Torvalds #include <linux/compiler.h>
121da177e4SLinus Torvalds #include <linux/bitops.h>
13f0d1b0b3SDavid Howells #include <linux/log2.h>
14e0deaff4SAndrew Morton #include <linux/typecheck.h>
15968ab183SLinus Torvalds #include <linux/printk.h>
16c7acec71SIan Abbott #include <linux/build_bug.h>
171da177e4SLinus Torvalds #include <asm/byteorder.h>
18c461aed3SJani Nikula #include <asm/div64.h>
19607ca46eSDavid Howells #include <uapi/linux/kernel.h>
201da177e4SLinus Torvalds 
211da177e4SLinus Torvalds #define STACK_MAGIC	0xdeadbeef
221da177e4SLinus Torvalds 
23e8c97af0SRandy Dunlap /**
24e8c97af0SRandy Dunlap  * REPEAT_BYTE - repeat the value @x multiple times as an unsigned long value
25e8c97af0SRandy Dunlap  * @x: value to repeat
26e8c97af0SRandy Dunlap  *
27e8c97af0SRandy Dunlap  * NOTE: @x is not checked for > 0xff; larger values produce odd results.
28e8c97af0SRandy Dunlap  */
2944696908SDavid S. Miller #define REPEAT_BYTE(x)	((~0ul / 0xff) * (x))
3044696908SDavid S. Miller 
313ca45a46Szijun_hu /* @a is a power of 2 value */
32a79ff731SAlexey Dobriyan #define ALIGN(x, a)		__ALIGN_KERNEL((x), (a))
33ed067d4aSKrzysztof Kozlowski #define ALIGN_DOWN(x, a)	__ALIGN_KERNEL((x) - ((a) - 1), (a))
349f93ff5bSAlexey Dobriyan #define __ALIGN_MASK(x, mask)	__ALIGN_KERNEL_MASK((x), (mask))
35a83308e6SMatthew Wilcox #define PTR_ALIGN(p, a)		((typeof(p))ALIGN((unsigned long)(p), (a)))
36229f5879SKishon Vijay Abraham I #define PTR_ALIGN_DOWN(p, a)	((typeof(p))ALIGN_DOWN((unsigned long)(p), (a)))
37f10db627SHerbert Xu #define IS_ALIGNED(x, a)		(((x) & ((typeof(x))(a) - 1)) == 0)
382ea58144SLinus Torvalds 
39d3849953SChristoph Hellwig /* generic data direction definitions */
40d3849953SChristoph Hellwig #define READ			0
41d3849953SChristoph Hellwig #define WRITE			1
42d3849953SChristoph Hellwig 
43e8c97af0SRandy Dunlap /**
44e8c97af0SRandy Dunlap  * ARRAY_SIZE - get the number of elements in array @arr
45e8c97af0SRandy Dunlap  * @arr: array to be sized
46e8c97af0SRandy Dunlap  */
47c5e631cfSRusty Russell #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
48c5e631cfSRusty Russell 
493ed605bcSGustavo Padovan #define u64_to_user_ptr(x) (		\
503ed605bcSGustavo Padovan {					\
51a0fe2c64SJann Horn 	typecheck(u64, (x));		\
52a0fe2c64SJann Horn 	(void __user *)(uintptr_t)(x);	\
533ed605bcSGustavo Padovan }					\
543ed605bcSGustavo Padovan )
553ed605bcSGustavo Padovan 
569b3be9f9SYinghai Lu /*
579b3be9f9SYinghai Lu  * This looks more complex than it should be. But we need to
589b3be9f9SYinghai Lu  * get the type for the ~ right in round_down (it needs to be
599b3be9f9SYinghai Lu  * as wide as the result!), and we want to evaluate the macro
609b3be9f9SYinghai Lu  * arguments just once each.
619b3be9f9SYinghai Lu  */
629b3be9f9SYinghai Lu #define __round_mask(x, y) ((__typeof__(x))((y)-1))
63cedc5b6aSKees Cook /**
64cedc5b6aSKees Cook  * round_up - round up to next specified power of 2
65cedc5b6aSKees Cook  * @x: the value to round
66cedc5b6aSKees Cook  * @y: multiple to round up to (must be a power of 2)
67cedc5b6aSKees Cook  *
68cedc5b6aSKees Cook  * Rounds @x up to next multiple of @y (which must be a power of 2).
69cedc5b6aSKees Cook  * To perform arbitrary rounding up, use roundup() below.
70cedc5b6aSKees Cook  */
719b3be9f9SYinghai Lu #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
72cedc5b6aSKees Cook /**
73cedc5b6aSKees Cook  * round_down - round down to next specified power of 2
74cedc5b6aSKees Cook  * @x: the value to round
75cedc5b6aSKees Cook  * @y: multiple to round down to (must be a power of 2)
76cedc5b6aSKees Cook  *
77cedc5b6aSKees Cook  * Rounds @x down to next multiple of @y (which must be a power of 2).
78cedc5b6aSKees Cook  * To perform arbitrary rounding down, use rounddown() below.
79cedc5b6aSKees Cook  */
809b3be9f9SYinghai Lu #define round_down(x, y) ((x) & ~__round_mask(x, y))
819b3be9f9SYinghai Lu 
82ce251e0eSAlexey Dobriyan #define typeof_member(T, m)	typeof(((T*)0)->m)
83ce251e0eSAlexey Dobriyan 
84b5d3755aSNicolas Dichtel #define DIV_ROUND_UP __KERNEL_DIV_ROUND_UP
85604df322SMasahiro Yamada 
86604df322SMasahiro Yamada #define DIV_ROUND_DOWN_ULL(ll, d) \
87604df322SMasahiro Yamada 	({ unsigned long long _tmp = (ll); do_div(_tmp, d); _tmp; })
88604df322SMasahiro Yamada 
898f9fab48SVinod Koul #define DIV_ROUND_UP_ULL(ll, d) \
908f9fab48SVinod Koul 	DIV_ROUND_DOWN_ULL((unsigned long long)(ll) + (d) - 1, (d))
9136a26c69SNicholas Bellinger 
9236a26c69SNicholas Bellinger #if BITS_PER_LONG == 32
9336a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d)
9436a26c69SNicholas Bellinger #else
9536a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP(ll,d)
9636a26c69SNicholas Bellinger #endif
97074e61ecSJames Morris 
98cedc5b6aSKees Cook /**
99cedc5b6aSKees Cook  * roundup - round up to the next specified multiple
100cedc5b6aSKees Cook  * @x: the value to up
101cedc5b6aSKees Cook  * @y: multiple to round up to
102cedc5b6aSKees Cook  *
103cedc5b6aSKees Cook  * Rounds @x up to next multiple of @y. If @y will always be a power
104cedc5b6aSKees Cook  * of 2, consider using the faster round_up().
105cedc5b6aSKees Cook  */
106b28efd54SEric Paris #define roundup(x, y) (					\
107b28efd54SEric Paris {							\
108b95c4d18SRandy Dunlap 	typeof(y) __y = y;				\
109b28efd54SEric Paris 	(((x) + (__y - 1)) / __y) * __y;		\
110b28efd54SEric Paris }							\
111b28efd54SEric Paris )
112cedc5b6aSKees Cook /**
113cedc5b6aSKees Cook  * rounddown - round down to next specified multiple
114cedc5b6aSKees Cook  * @x: the value to round
115cedc5b6aSKees Cook  * @y: multiple to round down to
116cedc5b6aSKees Cook  *
117cedc5b6aSKees Cook  * Rounds @x down to next multiple of @y. If @y will always be a power
118cedc5b6aSKees Cook  * of 2, consider using the faster round_down().
119cedc5b6aSKees Cook  */
120686a0f3dSEric Paris #define rounddown(x, y) (				\
121686a0f3dSEric Paris {							\
122686a0f3dSEric Paris 	typeof(x) __x = (x);				\
123686a0f3dSEric Paris 	__x - (__x % (y));				\
124686a0f3dSEric Paris }							\
125686a0f3dSEric Paris )
126b6d86d3dSGuenter Roeck 
127b6d86d3dSGuenter Roeck /*
1284f5901f5SNiklas Söderlund  * Divide positive or negative dividend by positive or negative divisor
1294f5901f5SNiklas Söderlund  * and round to closest integer. Result is undefined for negative
130e8c97af0SRandy Dunlap  * divisors if the dividend variable type is unsigned and for negative
1314f5901f5SNiklas Söderlund  * dividends if the divisor variable type is unsigned.
132b6d86d3dSGuenter Roeck  */
1339fe06081SDarrick J. Wong #define DIV_ROUND_CLOSEST(x, divisor)(			\
1349fe06081SDarrick J. Wong {							\
135b6d86d3dSGuenter Roeck 	typeof(x) __x = x;				\
136b6d86d3dSGuenter Roeck 	typeof(divisor) __d = divisor;			\
137c4e18497SGuenter Roeck 	(((typeof(x))-1) > 0 ||				\
1384f5901f5SNiklas Söderlund 	 ((typeof(divisor))-1) > 0 ||			\
1394f5901f5SNiklas Söderlund 	 (((__x) > 0) == ((__d) > 0))) ?		\
140b6d86d3dSGuenter Roeck 		(((__x) + ((__d) / 2)) / (__d)) :	\
141b6d86d3dSGuenter Roeck 		(((__x) - ((__d) / 2)) / (__d));	\
1429fe06081SDarrick J. Wong }							\
1439fe06081SDarrick J. Wong )
144f766093eSJavi Merino /*
145f766093eSJavi Merino  * Same as above but for u64 dividends. divisor must be a 32-bit
146f766093eSJavi Merino  * number.
147f766093eSJavi Merino  */
148f766093eSJavi Merino #define DIV_ROUND_CLOSEST_ULL(x, divisor)(		\
149f766093eSJavi Merino {							\
150f766093eSJavi Merino 	typeof(divisor) __d = divisor;			\
151f766093eSJavi Merino 	unsigned long long _tmp = (x) + (__d) / 2;	\
152f766093eSJavi Merino 	do_div(_tmp, __d);				\
153f766093eSJavi Merino 	_tmp;						\
154f766093eSJavi Merino }							\
155f766093eSJavi Merino )
1561da177e4SLinus Torvalds 
1579993bc63SSalman Qazi /*
1589993bc63SSalman Qazi  * Multiplies an integer by a fraction, while avoiding unnecessary
1599993bc63SSalman Qazi  * overflow or loss of precision.
1609993bc63SSalman Qazi  */
1619993bc63SSalman Qazi #define mult_frac(x, numer, denom)(			\
1629993bc63SSalman Qazi {							\
1639993bc63SSalman Qazi 	typeof(x) quot = (x) / (denom);			\
1649993bc63SSalman Qazi 	typeof(x) rem  = (x) % (denom);			\
1659993bc63SSalman Qazi 	(quot * (numer)) + ((rem * (numer)) / (denom));	\
1669993bc63SSalman Qazi }							\
1679993bc63SSalman Qazi )
1689993bc63SSalman Qazi 
1699993bc63SSalman Qazi 
170ca31e146SEduard - Gabriel Munteanu #define _RET_IP_		(unsigned long)__builtin_return_address(0)
171ca31e146SEduard - Gabriel Munteanu #define _THIS_IP_  ({ __label__ __here; __here: (unsigned long)&&__here; })
172ca31e146SEduard - Gabriel Munteanu 
1732da96acdSJens Axboe #define sector_div(a, b) do_div(a, b)
1742da96acdSJens Axboe 
175218e180eSAndrew Morton /**
176218e180eSAndrew Morton  * upper_32_bits - return bits 32-63 of a number
177218e180eSAndrew Morton  * @n: the number we're accessing
178218e180eSAndrew Morton  *
179218e180eSAndrew Morton  * A basic shift-right of a 64- or 32-bit quantity.  Use this to suppress
180218e180eSAndrew Morton  * the "right shift count >= width of type" warning when that quantity is
181218e180eSAndrew Morton  * 32-bits.
182218e180eSAndrew Morton  */
183218e180eSAndrew Morton #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
184218e180eSAndrew Morton 
185204b885eSJoerg Roedel /**
186204b885eSJoerg Roedel  * lower_32_bits - return bits 0-31 of a number
187204b885eSJoerg Roedel  * @n: the number we're accessing
188204b885eSJoerg Roedel  */
189*ef91bb19SHerbert Xu #define lower_32_bits(n) ((u32)((n) & 0xffffffff))
190204b885eSJoerg Roedel 
1911da177e4SLinus Torvalds struct completion;
192df2e71fbS[email protected] struct pt_regs;
193df2e71fbS[email protected] struct user;
1941da177e4SLinus Torvalds 
195070cb065SUwe Kleine-König #ifdef CONFIG_PREEMPT_VOLUNTARY
196070cb065SUwe Kleine-König extern int _cond_resched(void);
197070cb065SUwe Kleine-König # define might_resched() _cond_resched()
198070cb065SUwe Kleine-König #else
199070cb065SUwe Kleine-König # define might_resched() do { } while (0)
200070cb065SUwe Kleine-König #endif
201070cb065SUwe Kleine-König 
202d902db1eSFrederic Weisbecker #ifdef CONFIG_DEBUG_ATOMIC_SLEEP
203568f1967SPeter Zijlstra extern void ___might_sleep(const char *file, int line, int preempt_offset);
204568f1967SPeter Zijlstra extern void __might_sleep(const char *file, int line, int preempt_offset);
205568f1967SPeter Zijlstra extern void __cant_sleep(const char *file, int line, int preempt_offset);
206568f1967SPeter Zijlstra 
2071da177e4SLinus Torvalds /**
2081da177e4SLinus Torvalds  * might_sleep - annotation for functions that can sleep
2091da177e4SLinus Torvalds  *
2101da177e4SLinus Torvalds  * this macro will print a stack trace if it is executed in an atomic
211312364f3SDaniel Vetter  * context (spinlock, irq-handler, ...). Additional sections where blocking is
212312364f3SDaniel Vetter  * not allowed can be annotated with non_block_start() and non_block_end()
213312364f3SDaniel Vetter  * pairs.
2141da177e4SLinus Torvalds  *
2151da177e4SLinus Torvalds  * This is a useful debugging help to be able to catch problems early and not
216e20ec991SJim Cromie  * be bitten later when the calling function happens to sleep when it is not
2171da177e4SLinus Torvalds  * supposed to.
2181da177e4SLinus Torvalds  */
219f8cbd99bSIngo Molnar # define might_sleep() \
220e4aafea2SFrederic Weisbecker 	do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0)
221568f1967SPeter Zijlstra /**
222568f1967SPeter Zijlstra  * cant_sleep - annotation for functions that cannot sleep
223568f1967SPeter Zijlstra  *
224568f1967SPeter Zijlstra  * this macro will print a stack trace if it is executed with preemption enabled
225568f1967SPeter Zijlstra  */
226568f1967SPeter Zijlstra # define cant_sleep() \
227568f1967SPeter Zijlstra 	do { __cant_sleep(__FILE__, __LINE__, 0); } while (0)
22800845eb9SLinus Torvalds # define sched_annotate_sleep()	(current->task_state_change = 0)
229312364f3SDaniel Vetter /**
230312364f3SDaniel Vetter  * non_block_start - annotate the start of section where sleeping is prohibited
231312364f3SDaniel Vetter  *
232312364f3SDaniel Vetter  * This is on behalf of the oom reaper, specifically when it is calling the mmu
233312364f3SDaniel Vetter  * notifiers. The problem is that if the notifier were to block on, for example,
234312364f3SDaniel Vetter  * mutex_lock() and if the process which holds that mutex were to perform a
235312364f3SDaniel Vetter  * sleeping memory allocation, the oom reaper is now blocked on completion of
236312364f3SDaniel Vetter  * that memory allocation. Other blocking calls like wait_event() pose similar
237312364f3SDaniel Vetter  * issues.
238312364f3SDaniel Vetter  */
239312364f3SDaniel Vetter # define non_block_start() (current->non_block_count++)
240312364f3SDaniel Vetter /**
241312364f3SDaniel Vetter  * non_block_end - annotate the end of section where sleeping is prohibited
242312364f3SDaniel Vetter  *
243312364f3SDaniel Vetter  * Closes a section opened by non_block_start().
244312364f3SDaniel Vetter  */
245312364f3SDaniel Vetter # define non_block_end() WARN_ON(current->non_block_count-- == 0)
246f8cbd99bSIngo Molnar #else
2473427445aSPeter Zijlstra   static inline void ___might_sleep(const char *file, int line,
2483427445aSPeter Zijlstra 				   int preempt_offset) { }
249d894837fSSimon Kagstrom   static inline void __might_sleep(const char *file, int line,
250d894837fSSimon Kagstrom 				   int preempt_offset) { }
251f8cbd99bSIngo Molnar # define might_sleep() do { might_resched(); } while (0)
252568f1967SPeter Zijlstra # define cant_sleep() do { } while (0)
2531029a2b5SPeter Zijlstra # define sched_annotate_sleep() do { } while (0)
254312364f3SDaniel Vetter # define non_block_start() do { } while (0)
255312364f3SDaniel Vetter # define non_block_end() do { } while (0)
256f8cbd99bSIngo Molnar #endif
257f8cbd99bSIngo Molnar 
258368a5fa1SHua Zhong #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
259f8cbd99bSIngo Molnar 
2604e139c77SThomas Gleixner #ifndef CONFIG_PREEMPT_RT
2614e139c77SThomas Gleixner # define cant_migrate()		cant_sleep()
2624e139c77SThomas Gleixner #else
2634e139c77SThomas Gleixner   /* Placeholder for now */
2644e139c77SThomas Gleixner # define cant_migrate()		do { } while (0)
2654e139c77SThomas Gleixner #endif
2664e139c77SThomas Gleixner 
267c8299cb6SMichal Nazarewicz /**
268c8299cb6SMichal Nazarewicz  * abs - return absolute value of an argument
2698f57e4d9SMichal Nazarewicz  * @x: the value.  If it is unsigned type, it is converted to signed type first.
2708f57e4d9SMichal Nazarewicz  *     char is treated as if it was signed (regardless of whether it really is)
2718f57e4d9SMichal Nazarewicz  *     but the macro's return type is preserved as char.
272c8299cb6SMichal Nazarewicz  *
2738f57e4d9SMichal Nazarewicz  * Return: an absolute value of x.
27471a90484SAndrew Morton  */
2758f57e4d9SMichal Nazarewicz #define abs(x)	__abs_choose_expr(x, long long,				\
2768f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, long,				\
2778f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, int,				\
2788f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, short,				\
2798f57e4d9SMichal Nazarewicz 		__abs_choose_expr(x, char,				\
2808f57e4d9SMichal Nazarewicz 		__builtin_choose_expr(					\
2818f57e4d9SMichal Nazarewicz 			__builtin_types_compatible_p(typeof(x), char),	\
2828f57e4d9SMichal Nazarewicz 			(char)({ signed char __x = (x); __x<0?-__x:__x; }), \
2838f57e4d9SMichal Nazarewicz 			((void)0)))))))
2848f57e4d9SMichal Nazarewicz 
2858f57e4d9SMichal Nazarewicz #define __abs_choose_expr(x, type, other) __builtin_choose_expr(	\
2868f57e4d9SMichal Nazarewicz 	__builtin_types_compatible_p(typeof(x),   signed type) ||	\
2878f57e4d9SMichal Nazarewicz 	__builtin_types_compatible_p(typeof(x), unsigned type),		\
2888f57e4d9SMichal Nazarewicz 	({ signed type __x = (x); __x < 0 ? -__x : __x; }), other)
2891da177e4SLinus Torvalds 
29089770b0aSDaniel Borkmann /**
29189770b0aSDaniel Borkmann  * reciprocal_scale - "scale" a value into range [0, ep_ro)
29289770b0aSDaniel Borkmann  * @val: value
29389770b0aSDaniel Borkmann  * @ep_ro: right open interval endpoint
29489770b0aSDaniel Borkmann  *
29589770b0aSDaniel Borkmann  * Perform a "reciprocal multiplication" in order to "scale" a value into
296e8c97af0SRandy Dunlap  * range [0, @ep_ro), where the upper interval endpoint is right-open.
29789770b0aSDaniel Borkmann  * This is useful, e.g. for accessing a index of an array containing
298e8c97af0SRandy Dunlap  * @ep_ro elements, for example. Think of it as sort of modulus, only that
29989770b0aSDaniel Borkmann  * the result isn't that of modulo. ;) Note that if initial input is a
30089770b0aSDaniel Borkmann  * small value, then result will return 0.
30189770b0aSDaniel Borkmann  *
302e8c97af0SRandy Dunlap  * Return: a result based on @val in interval [0, @ep_ro).
30389770b0aSDaniel Borkmann  */
30489770b0aSDaniel Borkmann static inline u32 reciprocal_scale(u32 val, u32 ep_ro)
30589770b0aSDaniel Borkmann {
30689770b0aSDaniel Borkmann 	return (u32)(((u64) val * ep_ro) >> 32);
30789770b0aSDaniel Borkmann }
30889770b0aSDaniel Borkmann 
309386e7906SAxel Lin #if defined(CONFIG_MMU) && \
310386e7906SAxel Lin 	(defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP))
3119ec23531SDavid Hildenbrand #define might_fault() __might_fault(__FILE__, __LINE__)
3129ec23531SDavid Hildenbrand void __might_fault(const char *file, int line);
3133ee1afa3SNick Piggin #else
314662bbcb2SMichael S. Tsirkin static inline void might_fault(void) { }
3153ee1afa3SNick Piggin #endif
3163ee1afa3SNick Piggin 
317e041c683SAlan Stern extern struct atomic_notifier_head panic_notifier_list;
318c7ff0d9cSTAMUKI Shoichi extern long (*panic_blink)(int state);
3199402c95fSJoe Perches __printf(1, 2)
3209af6528eSPeter Zijlstra void panic(const char *fmt, ...) __noreturn __cold;
321ebc41f20SHidehiro Kawai void nmi_panic(struct pt_regs *regs, const char *msg);
322dd287796SAndrew Morton extern void oops_enter(void);
323dd287796SAndrew Morton extern void oops_exit(void);
32479076e12STiezhu Yang extern bool oops_may_print(void);
3259af6528eSPeter Zijlstra void do_exit(long error_code) __noreturn;
3269af6528eSPeter Zijlstra void complete_and_exit(struct completion *, long) __noreturn;
32733ee3b2eSAlexey Dobriyan 
32833ee3b2eSAlexey Dobriyan /* Internal, do not use. */
32933ee3b2eSAlexey Dobriyan int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
33033ee3b2eSAlexey Dobriyan int __must_check _kstrtol(const char *s, unsigned int base, long *res);
33133ee3b2eSAlexey Dobriyan 
33233ee3b2eSAlexey Dobriyan int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
33333ee3b2eSAlexey Dobriyan int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
3344c925d60SEldad Zack 
3354c925d60SEldad Zack /**
3364c925d60SEldad Zack  * kstrtoul - convert a string to an unsigned long
3374c925d60SEldad Zack  * @s: The start of the string. The string must be null-terminated, and may also
3384c925d60SEldad Zack  *  include a single newline before its terminating null. The first character
3394c925d60SEldad Zack  *  may also be a plus sign, but not a minus sign.
3404c925d60SEldad Zack  * @base: The number base to use. The maximum supported base is 16. If base is
3414c925d60SEldad Zack  *  given as 0, then the base of the string is automatically detected with the
3424c925d60SEldad Zack  *  conventional semantics - If it begins with 0x the number will be parsed as a
3434c925d60SEldad Zack  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
3444c925d60SEldad Zack  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
3454c925d60SEldad Zack  * @res: Where to write the result of the conversion on success.
3464c925d60SEldad Zack  *
3474c925d60SEldad Zack  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
348ef0f2685SKars Mulder  * Preferred over simple_strtoul(). Return code must be checked.
3494c925d60SEldad Zack */
35033ee3b2eSAlexey Dobriyan static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res)
35133ee3b2eSAlexey Dobriyan {
35233ee3b2eSAlexey Dobriyan 	/*
35333ee3b2eSAlexey Dobriyan 	 * We want to shortcut function call, but
35433ee3b2eSAlexey Dobriyan 	 * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0.
35533ee3b2eSAlexey Dobriyan 	 */
35633ee3b2eSAlexey Dobriyan 	if (sizeof(unsigned long) == sizeof(unsigned long long) &&
35733ee3b2eSAlexey Dobriyan 	    __alignof__(unsigned long) == __alignof__(unsigned long long))
35833ee3b2eSAlexey Dobriyan 		return kstrtoull(s, base, (unsigned long long *)res);
35933ee3b2eSAlexey Dobriyan 	else
36033ee3b2eSAlexey Dobriyan 		return _kstrtoul(s, base, res);
36133ee3b2eSAlexey Dobriyan }
36233ee3b2eSAlexey Dobriyan 
3634c925d60SEldad Zack /**
3644c925d60SEldad Zack  * kstrtol - convert a string to a long
3654c925d60SEldad Zack  * @s: The start of the string. The string must be null-terminated, and may also
3664c925d60SEldad Zack  *  include a single newline before its terminating null. The first character
3674c925d60SEldad Zack  *  may also be a plus sign or a minus sign.
3684c925d60SEldad Zack  * @base: The number base to use. The maximum supported base is 16. If base is
3694c925d60SEldad Zack  *  given as 0, then the base of the string is automatically detected with the
3704c925d60SEldad Zack  *  conventional semantics - If it begins with 0x the number will be parsed as a
3714c925d60SEldad Zack  *  hexadecimal (case insensitive), if it otherwise begins with 0, it will be
3724c925d60SEldad Zack  *  parsed as an octal number. Otherwise it will be parsed as a decimal.
3734c925d60SEldad Zack  * @res: Where to write the result of the conversion on success.
3744c925d60SEldad Zack  *
3754c925d60SEldad Zack  * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error.
376ef0f2685SKars Mulder  * Preferred over simple_strtol(). Return code must be checked.
3774c925d60SEldad Zack  */
37833ee3b2eSAlexey Dobriyan static inline int __must_check kstrtol(const char *s, unsigned int base, long *res)
37933ee3b2eSAlexey Dobriyan {
38033ee3b2eSAlexey Dobriyan 	/*
38133ee3b2eSAlexey Dobriyan 	 * We want to shortcut function call, but
38233ee3b2eSAlexey Dobriyan 	 * __builtin_types_compatible_p(long, long long) = 0.
38333ee3b2eSAlexey Dobriyan 	 */
38433ee3b2eSAlexey Dobriyan 	if (sizeof(long) == sizeof(long long) &&
38533ee3b2eSAlexey Dobriyan 	    __alignof__(long) == __alignof__(long long))
38633ee3b2eSAlexey Dobriyan 		return kstrtoll(s, base, (long long *)res);
38733ee3b2eSAlexey Dobriyan 	else
38833ee3b2eSAlexey Dobriyan 		return _kstrtol(s, base, res);
38933ee3b2eSAlexey Dobriyan }
39033ee3b2eSAlexey Dobriyan 
39133ee3b2eSAlexey Dobriyan int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
39233ee3b2eSAlexey Dobriyan int __must_check kstrtoint(const char *s, unsigned int base, int *res);
39333ee3b2eSAlexey Dobriyan 
39433ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res)
39533ee3b2eSAlexey Dobriyan {
39633ee3b2eSAlexey Dobriyan 	return kstrtoull(s, base, res);
39733ee3b2eSAlexey Dobriyan }
39833ee3b2eSAlexey Dobriyan 
39933ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res)
40033ee3b2eSAlexey Dobriyan {
40133ee3b2eSAlexey Dobriyan 	return kstrtoll(s, base, res);
40233ee3b2eSAlexey Dobriyan }
40333ee3b2eSAlexey Dobriyan 
40433ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res)
40533ee3b2eSAlexey Dobriyan {
40633ee3b2eSAlexey Dobriyan 	return kstrtouint(s, base, res);
40733ee3b2eSAlexey Dobriyan }
40833ee3b2eSAlexey Dobriyan 
40933ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res)
41033ee3b2eSAlexey Dobriyan {
41133ee3b2eSAlexey Dobriyan 	return kstrtoint(s, base, res);
41233ee3b2eSAlexey Dobriyan }
41333ee3b2eSAlexey Dobriyan 
41433ee3b2eSAlexey Dobriyan int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
41533ee3b2eSAlexey Dobriyan int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
41633ee3b2eSAlexey Dobriyan int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
41733ee3b2eSAlexey Dobriyan int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
418ef951599SKees Cook int __must_check kstrtobool(const char *s, bool *res);
41933ee3b2eSAlexey Dobriyan 
420c196e32aSAlexey Dobriyan int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
421c196e32aSAlexey Dobriyan int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
422c196e32aSAlexey Dobriyan int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res);
423c196e32aSAlexey Dobriyan int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res);
424c196e32aSAlexey Dobriyan int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res);
425c196e32aSAlexey Dobriyan int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res);
426c196e32aSAlexey Dobriyan int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res);
427c196e32aSAlexey Dobriyan int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
428c196e32aSAlexey Dobriyan int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
429c196e32aSAlexey Dobriyan int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
430ef951599SKees Cook int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
431c196e32aSAlexey Dobriyan 
432c196e32aSAlexey Dobriyan static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res)
433c196e32aSAlexey Dobriyan {
434c196e32aSAlexey Dobriyan 	return kstrtoull_from_user(s, count, base, res);
435c196e32aSAlexey Dobriyan }
436c196e32aSAlexey Dobriyan 
437c196e32aSAlexey Dobriyan static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res)
438c196e32aSAlexey Dobriyan {
439c196e32aSAlexey Dobriyan 	return kstrtoll_from_user(s, count, base, res);
440c196e32aSAlexey Dobriyan }
441c196e32aSAlexey Dobriyan 
442c196e32aSAlexey Dobriyan static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res)
443c196e32aSAlexey Dobriyan {
444c196e32aSAlexey Dobriyan 	return kstrtouint_from_user(s, count, base, res);
445c196e32aSAlexey Dobriyan }
446c196e32aSAlexey Dobriyan 
447c196e32aSAlexey Dobriyan static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res)
448c196e32aSAlexey Dobriyan {
449c196e32aSAlexey Dobriyan 	return kstrtoint_from_user(s, count, base, res);
450c196e32aSAlexey Dobriyan }
451c196e32aSAlexey Dobriyan 
452885e68e8SAndy Shevchenko /*
453885e68e8SAndy Shevchenko  * Use kstrto<foo> instead.
454885e68e8SAndy Shevchenko  *
455885e68e8SAndy Shevchenko  * NOTE: simple_strto<foo> does not check for the range overflow and,
456885e68e8SAndy Shevchenko  *	 depending on the input, may give interesting results.
457885e68e8SAndy Shevchenko  *
458885e68e8SAndy Shevchenko  * Use these functions if and only if you cannot use kstrto<foo>, because
459885e68e8SAndy Shevchenko  * the conversion ends on the first non-digit character, which may be far
460885e68e8SAndy Shevchenko  * beyond the supported range. It might be useful to parse the strings like
461885e68e8SAndy Shevchenko  * 10x50 or 12:21 without altering original string or temporary buffer in use.
462885e68e8SAndy Shevchenko  * Keep in mind above caveat.
463885e68e8SAndy Shevchenko  */
46467d0a075SJoe Perches 
4651da177e4SLinus Torvalds extern unsigned long simple_strtoul(const char *,char **,unsigned int);
4661da177e4SLinus Torvalds extern long simple_strtol(const char *,char **,unsigned int);
4671da177e4SLinus Torvalds extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
4681da177e4SLinus Torvalds extern long long simple_strtoll(const char *,char **,unsigned int);
46933ee3b2eSAlexey Dobriyan 
470d1be35cbSAndrei Vagin extern int num_to_str(char *buf, int size,
471d1be35cbSAndrei Vagin 		      unsigned long long num, unsigned int width);
4721ac101a5SKAMEZAWA Hiroyuki 
47367d0a075SJoe Perches /* lib/printf utilities */
47467d0a075SJoe Perches 
475b9075fa9SJoe Perches extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...);
476b9075fa9SJoe Perches extern __printf(2, 0) int vsprintf(char *buf, const char *, va_list);
477b9075fa9SJoe Perches extern __printf(3, 4)
478b9075fa9SJoe Perches int snprintf(char *buf, size_t size, const char *fmt, ...);
479b9075fa9SJoe Perches extern __printf(3, 0)
480b9075fa9SJoe Perches int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
481b9075fa9SJoe Perches extern __printf(3, 4)
482b9075fa9SJoe Perches int scnprintf(char *buf, size_t size, const char *fmt, ...);
483b9075fa9SJoe Perches extern __printf(3, 0)
484b9075fa9SJoe Perches int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
48548a27055SRasmus Villemoes extern __printf(2, 3) __malloc
486b9075fa9SJoe Perches char *kasprintf(gfp_t gfp, const char *fmt, ...);
48748a27055SRasmus Villemoes extern __printf(2, 0) __malloc
4888db14860SNicolas Iooss char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
4890a9df786SRasmus Villemoes extern __printf(2, 0)
4900a9df786SRasmus Villemoes const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args);
4911da177e4SLinus Torvalds 
4926061d949SJoe Perches extern __scanf(2, 3)
4936061d949SJoe Perches int sscanf(const char *, const char *, ...);
4946061d949SJoe Perches extern __scanf(2, 0)
4956061d949SJoe Perches int vsscanf(const char *, const char *, va_list);
4961da177e4SLinus Torvalds 
4971da177e4SLinus Torvalds extern int get_option(char **str, int *pint);
4981da177e4SLinus Torvalds extern char *get_options(const char *str, int nints, int *ints);
499d974ae37SJeremy Fitzhardinge extern unsigned long long memparse(const char *ptr, char **retptr);
5006ccc72b8SDave Young extern bool parse_option_str(const char *str, const char *option);
501f51b17c8SBaoquan He extern char *next_arg(char *args, char **param, char **val);
5021da177e4SLinus Torvalds 
5035e376613STrent Piepho extern int core_kernel_text(unsigned long addr);
5049fbcc57aSJosh Poimboeuf extern int init_kernel_text(unsigned long addr);
505cdbe61bfSSteven Rostedt extern int core_kernel_data(unsigned long addr);
5061da177e4SLinus Torvalds extern int __kernel_text_address(unsigned long addr);
5071da177e4SLinus Torvalds extern int kernel_text_address(unsigned long addr);
508ab7476cfSArjan van de Ven extern int func_ptr_is_kernel_text(void *ptr);
509ab7476cfSArjan van de Ven 
5109f615894SAndy Shevchenko u64 int_pow(u64 base, unsigned int exp);
5111da177e4SLinus Torvalds unsigned long int_sqrt(unsigned long);
5121da177e4SLinus Torvalds 
51347a36163SCrt Mori #if BITS_PER_LONG < 64
51447a36163SCrt Mori u32 int_sqrt64(u64 x);
51547a36163SCrt Mori #else
51647a36163SCrt Mori static inline u32 int_sqrt64(u64 x)
51747a36163SCrt Mori {
51847a36163SCrt Mori 	return (u32)int_sqrt(x);
51947a36163SCrt Mori }
52047a36163SCrt Mori #endif
52147a36163SCrt Mori 
52260c958d8SGuilherme G. Piccoli #ifdef CONFIG_SMP
52360c958d8SGuilherme G. Piccoli extern unsigned int sysctl_oops_all_cpu_backtrace;
52460c958d8SGuilherme G. Piccoli #else
52560c958d8SGuilherme G. Piccoli #define sysctl_oops_all_cpu_backtrace 0
52660c958d8SGuilherme G. Piccoli #endif /* CONFIG_SMP */
52760c958d8SGuilherme G. Piccoli 
5281da177e4SLinus Torvalds extern void bust_spinlocks(int yes);
5291da177e4SLinus Torvalds extern int oops_in_progress;		/* If set, an oops, panic(), BUG() or die() is in progress */
530aa727107SAdrian Bunk extern int panic_timeout;
53181c9d43fSFeng Tang extern unsigned long panic_print;
5321da177e4SLinus Torvalds extern int panic_on_oops;
5338da5addaSDon Zickus extern int panic_on_unrecovered_nmi;
5345211a242SKurt Garloff extern int panic_on_io_nmi;
5359e3961a0SPrarit Bhargava extern int panic_on_warn;
536db38d5c1SRafael Aquini extern unsigned long panic_on_taint;
537db38d5c1SRafael Aquini extern bool panic_on_taint_nousertaint;
538088e9d25SDaniel Bristot de Oliveira extern int sysctl_panic_on_rcu_stall;
53955af7796SMitsuo Hayasaka extern int sysctl_panic_on_stackoverflow;
5405375b708SHATAYAMA Daisuke 
5415375b708SHATAYAMA Daisuke extern bool crash_kexec_post_notifiers;
5425375b708SHATAYAMA Daisuke 
5435800dc3cSJason Baron /*
5441717f209SHidehiro Kawai  * panic_cpu is used for synchronizing panic() and crash_kexec() execution. It
5451717f209SHidehiro Kawai  * holds a CPU number which is executing panic() currently. A value of
5461717f209SHidehiro Kawai  * PANIC_CPU_INVALID means no CPU has entered panic() or crash_kexec().
5471717f209SHidehiro Kawai  */
5481717f209SHidehiro Kawai extern atomic_t panic_cpu;
5491717f209SHidehiro Kawai #define PANIC_CPU_INVALID	-1
5501717f209SHidehiro Kawai 
5511717f209SHidehiro Kawai /*
5525800dc3cSJason Baron  * Only to be used by arch init code. If the user over-wrote the default
5535800dc3cSJason Baron  * CONFIG_PANIC_TIMEOUT, honor it.
5545800dc3cSJason Baron  */
5555800dc3cSJason Baron static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout)
5565800dc3cSJason Baron {
5575800dc3cSJason Baron 	if (panic_timeout == arch_default_timeout)
5585800dc3cSJason Baron 		panic_timeout = timeout;
5595800dc3cSJason Baron }
5601da177e4SLinus Torvalds extern const char *print_tainted(void);
561373d4d09SRusty Russell enum lockdep_ok {
562373d4d09SRusty Russell 	LOCKDEP_STILL_OK,
563373d4d09SRusty Russell 	LOCKDEP_NOW_UNRELIABLE
564373d4d09SRusty Russell };
565373d4d09SRusty Russell extern void add_taint(unsigned flag, enum lockdep_ok);
56625ddbb18SAndi Kleen extern int test_taint(unsigned flag);
56725ddbb18SAndi Kleen extern unsigned long get_taint(void);
568b920de1bSDavid Howells extern int root_mountflags;
5691da177e4SLinus Torvalds 
5702ce802f6STejun Heo extern bool early_boot_irqs_disabled;
5712ce802f6STejun Heo 
57269a78ff2SThomas Gleixner /*
57369a78ff2SThomas Gleixner  * Values used for system_state. Ordering of the states must not be changed
57469a78ff2SThomas Gleixner  * as code checks for <, <=, >, >= STATE.
57569a78ff2SThomas Gleixner  */
5761da177e4SLinus Torvalds extern enum system_states {
5771da177e4SLinus Torvalds 	SYSTEM_BOOTING,
57869a78ff2SThomas Gleixner 	SYSTEM_SCHEDULING,
5791da177e4SLinus Torvalds 	SYSTEM_RUNNING,
5801da177e4SLinus Torvalds 	SYSTEM_HALT,
5811da177e4SLinus Torvalds 	SYSTEM_POWER_OFF,
5821da177e4SLinus Torvalds 	SYSTEM_RESTART,
583c1a957d1SThomas Gleixner 	SYSTEM_SUSPEND,
5841da177e4SLinus Torvalds } system_state;
5851da177e4SLinus Torvalds 
58647d4b263SKees Cook /* This cannot be an enum because some may be used in assembly source. */
58725ddbb18SAndi Kleen #define TAINT_PROPRIETARY_MODULE	0
58825ddbb18SAndi Kleen #define TAINT_FORCED_MODULE		1
5898c90487cSDave Jones #define TAINT_CPU_OUT_OF_SPEC		2
59025ddbb18SAndi Kleen #define TAINT_FORCED_RMMOD		3
59125ddbb18SAndi Kleen #define TAINT_MACHINE_CHECK		4
59225ddbb18SAndi Kleen #define TAINT_BAD_PAGE			5
59325ddbb18SAndi Kleen #define TAINT_USER			6
59425ddbb18SAndi Kleen #define TAINT_DIE			7
59525ddbb18SAndi Kleen #define TAINT_OVERRIDDEN_ACPI_TABLE	8
59625ddbb18SAndi Kleen #define TAINT_WARN			9
59726e9a397SLinus Torvalds #define TAINT_CRAP			10
59892946bc7SBen Hutchings #define TAINT_FIRMWARE_WORKAROUND	11
5992449b8baSBen Hutchings #define TAINT_OOT_MODULE		12
60066cc69e3SMathieu Desnoyers #define TAINT_UNSIGNED_MODULE		13
60169361eefSJosh Hunt #define TAINT_SOFTLOCKUP		14
602c5f45465SSeth Jennings #define TAINT_LIVEPATCH			15
6034efb442cSBorislav Petkov #define TAINT_AUX			16
604bc4f2f54SKees Cook #define TAINT_RANDSTRUCT		17
605bc4f2f54SKees Cook #define TAINT_FLAGS_COUNT		18
606db38d5c1SRafael Aquini #define TAINT_FLAGS_MAX			((1UL << TAINT_FLAGS_COUNT) - 1)
6077fd8329bSPetr Mladek 
6087fd8329bSPetr Mladek struct taint_flag {
6095eb7c0d0SLarry Finger 	char c_true;	/* character printed when tainted */
6105eb7c0d0SLarry Finger 	char c_false;	/* character printed when not tainted */
6117fd8329bSPetr Mladek 	bool module;	/* also show as a per-module taint flag */
6127fd8329bSPetr Mladek };
6137fd8329bSPetr Mladek 
6147fd8329bSPetr Mladek extern const struct taint_flag taint_flags[TAINT_FLAGS_COUNT];
6151da177e4SLinus Torvalds 
6163fc95772SHarvey Harrison extern const char hex_asc[];
6173fc95772SHarvey Harrison #define hex_asc_lo(x)	hex_asc[((x) & 0x0f)]
6183fc95772SHarvey Harrison #define hex_asc_hi(x)	hex_asc[((x) & 0xf0) >> 4]
6193fc95772SHarvey Harrison 
62055036ba7SAndy Shevchenko static inline char *hex_byte_pack(char *buf, u8 byte)
6213fc95772SHarvey Harrison {
6223fc95772SHarvey Harrison 	*buf++ = hex_asc_hi(byte);
6233fc95772SHarvey Harrison 	*buf++ = hex_asc_lo(byte);
6243fc95772SHarvey Harrison 	return buf;
6253fc95772SHarvey Harrison }
62699eaf3c4SRandy Dunlap 
627c26d436cSAndre Naujoks extern const char hex_asc_upper[];
628c26d436cSAndre Naujoks #define hex_asc_upper_lo(x)	hex_asc_upper[((x) & 0x0f)]
629c26d436cSAndre Naujoks #define hex_asc_upper_hi(x)	hex_asc_upper[((x) & 0xf0) >> 4]
630c26d436cSAndre Naujoks 
631c26d436cSAndre Naujoks static inline char *hex_byte_pack_upper(char *buf, u8 byte)
632c26d436cSAndre Naujoks {
633c26d436cSAndre Naujoks 	*buf++ = hex_asc_upper_hi(byte);
634c26d436cSAndre Naujoks 	*buf++ = hex_asc_upper_lo(byte);
635c26d436cSAndre Naujoks 	return buf;
636c26d436cSAndre Naujoks }
637c26d436cSAndre Naujoks 
63890378889SAndy Shevchenko extern int hex_to_bin(char ch);
639b7804983SMimi Zohar extern int __must_check hex2bin(u8 *dst, const char *src, size_t count);
64053d91c5cSDavid Howells extern char *bin2hex(char *dst, const void *src, size_t count);
64190378889SAndy Shevchenko 
642a69f5edbSJoe Perches bool mac_pton(const char *s, u8 *mac);
6434cd5773aSAndy Shevchenko 
6448a64f336SJoe Perches /*
645526211bcSIngo Molnar  * General tracing related utility functions - trace_printk(),
6462002c258SSteven Rostedt  * tracing_on/tracing_off and tracing_start()/tracing_stop
6472002c258SSteven Rostedt  *
6482002c258SSteven Rostedt  * Use tracing_on/tracing_off when you want to quickly turn on or off
6492002c258SSteven Rostedt  * tracing. It simply enables or disables the recording of the trace events.
650156f5a78SGeunSik Lim  * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on
6512002c258SSteven Rostedt  * file, which gives a means for the kernel and userspace to interact.
6522002c258SSteven Rostedt  * Place a tracing_off() in the kernel where you want tracing to end.
6532002c258SSteven Rostedt  * From user space, examine the trace, and then echo 1 > tracing_on
6542002c258SSteven Rostedt  * to continue tracing.
6552002c258SSteven Rostedt  *
6562002c258SSteven Rostedt  * tracing_stop/tracing_start has slightly more overhead. It is used
6572002c258SSteven Rostedt  * by things like suspend to ram where disabling the recording of the
6582002c258SSteven Rostedt  * trace is not enough, but tracing must actually stop because things
6592002c258SSteven Rostedt  * like calling smp_processor_id() may crash the system.
6602002c258SSteven Rostedt  *
6612002c258SSteven Rostedt  * Most likely, you want to use tracing_on/tracing_off.
662526211bcSIngo Molnar  */
663cecbca96SFrederic Weisbecker 
664cecbca96SFrederic Weisbecker enum ftrace_dump_mode {
665cecbca96SFrederic Weisbecker 	DUMP_NONE,
666cecbca96SFrederic Weisbecker 	DUMP_ALL,
667cecbca96SFrederic Weisbecker 	DUMP_ORIG,
668cecbca96SFrederic Weisbecker };
669cecbca96SFrederic Weisbecker 
670526211bcSIngo Molnar #ifdef CONFIG_TRACING
67193d68e52SSteven Rostedt void tracing_on(void);
67293d68e52SSteven Rostedt void tracing_off(void);
67393d68e52SSteven Rostedt int tracing_is_on(void);
674ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot(void);
675ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot_alloc(void);
67693d68e52SSteven Rostedt 
677526211bcSIngo Molnar extern void tracing_start(void);
678526211bcSIngo Molnar extern void tracing_stop(void);
679526211bcSIngo Molnar 
680b9075fa9SJoe Perches static inline __printf(1, 2)
681b9075fa9SJoe Perches void ____trace_printk_check_format(const char *fmt, ...)
682769b0441SFrederic Weisbecker {
683769b0441SFrederic Weisbecker }
684769b0441SFrederic Weisbecker #define __trace_printk_check_format(fmt, args...)			\
685769b0441SFrederic Weisbecker do {									\
686769b0441SFrederic Weisbecker 	if (0)								\
687769b0441SFrederic Weisbecker 		____trace_printk_check_format(fmt, ##args);		\
688769b0441SFrederic Weisbecker } while (0)
689769b0441SFrederic Weisbecker 
690526211bcSIngo Molnar /**
691526211bcSIngo Molnar  * trace_printk - printf formatting in the ftrace buffer
692526211bcSIngo Molnar  * @fmt: the printf format for printing
693526211bcSIngo Molnar  *
694e8c97af0SRandy Dunlap  * Note: __trace_printk is an internal function for trace_printk() and
695e8c97af0SRandy Dunlap  *       the @ip is passed in via the trace_printk() macro.
696526211bcSIngo Molnar  *
697526211bcSIngo Molnar  * This function allows a kernel developer to debug fast path sections
698526211bcSIngo Molnar  * that printk is not appropriate for. By scattering in various
699526211bcSIngo Molnar  * printk like tracing in the code, a developer can quickly see
700526211bcSIngo Molnar  * where problems are occurring.
701526211bcSIngo Molnar  *
702526211bcSIngo Molnar  * This is intended as a debugging tool for the developer only.
703526211bcSIngo Molnar  * Please refrain from leaving trace_printks scattered around in
70409ae7234SSteven Rostedt (Red Hat)  * your code. (Extra memory is used for special buffers that are
705e8c97af0SRandy Dunlap  * allocated when trace_printk() is used.)
7069d3c752cSSteven Rostedt (Red Hat)  *
7078730662dSWei Wang  * A little optimization trick is done here. If there's only one
7089d3c752cSSteven Rostedt (Red Hat)  * argument, there's no need to scan the string for printf formats.
7099d3c752cSSteven Rostedt (Red Hat)  * The trace_puts() will suffice. But how can we take advantage of
7109d3c752cSSteven Rostedt (Red Hat)  * using trace_puts() when trace_printk() has only one argument?
7119d3c752cSSteven Rostedt (Red Hat)  * By stringifying the args and checking the size we can tell
7129d3c752cSSteven Rostedt (Red Hat)  * whether or not there are args. __stringify((__VA_ARGS__)) will
7139d3c752cSSteven Rostedt (Red Hat)  * turn into "()\0" with a size of 3 when there are no args, anything
7149d3c752cSSteven Rostedt (Red Hat)  * else will be bigger. All we need to do is define a string to this,
7159d3c752cSSteven Rostedt (Red Hat)  * and then take its size and compare to 3. If it's bigger, use
7169d3c752cSSteven Rostedt (Red Hat)  * do_trace_printk() otherwise, optimize it to trace_puts(). Then just
7179d3c752cSSteven Rostedt (Red Hat)  * let gcc optimize the rest.
718526211bcSIngo Molnar  */
719769b0441SFrederic Weisbecker 
7209d3c752cSSteven Rostedt (Red Hat) #define trace_printk(fmt, ...)				\
7219d3c752cSSteven Rostedt (Red Hat) do {							\
7229d3c752cSSteven Rostedt (Red Hat) 	char _______STR[] = __stringify((__VA_ARGS__));	\
7239d3c752cSSteven Rostedt (Red Hat) 	if (sizeof(_______STR) > 3)			\
7249d3c752cSSteven Rostedt (Red Hat) 		do_trace_printk(fmt, ##__VA_ARGS__);	\
7259d3c752cSSteven Rostedt (Red Hat) 	else						\
7269d3c752cSSteven Rostedt (Red Hat) 		trace_puts(fmt);			\
7279d3c752cSSteven Rostedt (Red Hat) } while (0)
7289d3c752cSSteven Rostedt (Red Hat) 
7299d3c752cSSteven Rostedt (Red Hat) #define do_trace_printk(fmt, args...)					\
730769b0441SFrederic Weisbecker do {									\
7313debb0a9SSteven Rostedt (Red Hat) 	static const char *trace_printk_fmt __used			\
73248ead020SFrederic Weisbecker 		__attribute__((section("__trace_printk_fmt"))) =	\
73348ead020SFrederic Weisbecker 		__builtin_constant_p(fmt) ? fmt : NULL;			\
73448ead020SFrederic Weisbecker 									\
73507d777feSSteven Rostedt 	__trace_printk_check_format(fmt, ##args);			\
73607d777feSSteven Rostedt 									\
73707d777feSSteven Rostedt 	if (__builtin_constant_p(fmt))					\
73848ead020SFrederic Weisbecker 		__trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args);	\
73907d777feSSteven Rostedt 	else								\
74048ead020SFrederic Weisbecker 		__trace_printk(_THIS_IP_, fmt, ##args);			\
741769b0441SFrederic Weisbecker } while (0)
742769b0441SFrederic Weisbecker 
743b9075fa9SJoe Perches extern __printf(2, 3)
744b9075fa9SJoe Perches int __trace_bprintk(unsigned long ip, const char *fmt, ...);
74548ead020SFrederic Weisbecker 
746b9075fa9SJoe Perches extern __printf(2, 3)
747b9075fa9SJoe Perches int __trace_printk(unsigned long ip, const char *fmt, ...);
748769b0441SFrederic Weisbecker 
74909ae7234SSteven Rostedt (Red Hat) /**
75009ae7234SSteven Rostedt (Red Hat)  * trace_puts - write a string into the ftrace buffer
75109ae7234SSteven Rostedt (Red Hat)  * @str: the string to record
75209ae7234SSteven Rostedt (Red Hat)  *
75309ae7234SSteven Rostedt (Red Hat)  * Note: __trace_bputs is an internal function for trace_puts and
75409ae7234SSteven Rostedt (Red Hat)  *       the @ip is passed in via the trace_puts macro.
75509ae7234SSteven Rostedt (Red Hat)  *
75609ae7234SSteven Rostedt (Red Hat)  * This is similar to trace_printk() but is made for those really fast
757e8c97af0SRandy Dunlap  * paths that a developer wants the least amount of "Heisenbug" effects,
75809ae7234SSteven Rostedt (Red Hat)  * where the processing of the print format is still too much.
75909ae7234SSteven Rostedt (Red Hat)  *
76009ae7234SSteven Rostedt (Red Hat)  * This function allows a kernel developer to debug fast path sections
76109ae7234SSteven Rostedt (Red Hat)  * that printk is not appropriate for. By scattering in various
76209ae7234SSteven Rostedt (Red Hat)  * printk like tracing in the code, a developer can quickly see
76309ae7234SSteven Rostedt (Red Hat)  * where problems are occurring.
76409ae7234SSteven Rostedt (Red Hat)  *
76509ae7234SSteven Rostedt (Red Hat)  * This is intended as a debugging tool for the developer only.
76609ae7234SSteven Rostedt (Red Hat)  * Please refrain from leaving trace_puts scattered around in
76709ae7234SSteven Rostedt (Red Hat)  * your code. (Extra memory is used for special buffers that are
768e8c97af0SRandy Dunlap  * allocated when trace_puts() is used.)
76909ae7234SSteven Rostedt (Red Hat)  *
77009ae7234SSteven Rostedt (Red Hat)  * Returns: 0 if nothing was written, positive # if string was.
77109ae7234SSteven Rostedt (Red Hat)  *  (1 when __trace_bputs is used, strlen(str) when __trace_puts is used)
77209ae7234SSteven Rostedt (Red Hat)  */
77309ae7234SSteven Rostedt (Red Hat) 
77409ae7234SSteven Rostedt (Red Hat) #define trace_puts(str) ({						\
7753debb0a9SSteven Rostedt (Red Hat) 	static const char *trace_printk_fmt __used			\
77609ae7234SSteven Rostedt (Red Hat) 		__attribute__((section("__trace_printk_fmt"))) =	\
77709ae7234SSteven Rostedt (Red Hat) 		__builtin_constant_p(str) ? str : NULL;			\
77809ae7234SSteven Rostedt (Red Hat) 									\
77909ae7234SSteven Rostedt (Red Hat) 	if (__builtin_constant_p(str))					\
78009ae7234SSteven Rostedt (Red Hat) 		__trace_bputs(_THIS_IP_, trace_printk_fmt);		\
78109ae7234SSteven Rostedt (Red Hat) 	else								\
78209ae7234SSteven Rostedt (Red Hat) 		__trace_puts(_THIS_IP_, str, strlen(str));		\
78309ae7234SSteven Rostedt (Red Hat) })
784bcf312cfSSteven Rostedt extern int __trace_bputs(unsigned long ip, const char *str);
785bcf312cfSSteven Rostedt extern int __trace_puts(unsigned long ip, const char *str, int size);
78609ae7234SSteven Rostedt (Red Hat) 
787c142be8eSSteven Rostedt (Red Hat) extern void trace_dump_stack(int skip);
78803889384SSteven Rostedt 
78948ead020SFrederic Weisbecker /*
79048ead020SFrederic Weisbecker  * The double __builtin_constant_p is because gcc will give us an error
79148ead020SFrederic Weisbecker  * if we try to allocate the static variable to fmt if it is not a
79248ead020SFrederic Weisbecker  * constant. Even with the outer if statement.
79348ead020SFrederic Weisbecker  */
794769b0441SFrederic Weisbecker #define ftrace_vprintk(fmt, vargs)					\
795769b0441SFrederic Weisbecker do {									\
79648ead020SFrederic Weisbecker 	if (__builtin_constant_p(fmt)) {				\
7973debb0a9SSteven Rostedt (Red Hat) 		static const char *trace_printk_fmt __used		\
79848ead020SFrederic Weisbecker 		  __attribute__((section("__trace_printk_fmt"))) =	\
79948ead020SFrederic Weisbecker 			__builtin_constant_p(fmt) ? fmt : NULL;		\
8007bffc23eSIngo Molnar 									\
80148ead020SFrederic Weisbecker 		__ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs);	\
80248ead020SFrederic Weisbecker 	} else								\
80348ead020SFrederic Weisbecker 		__ftrace_vprintk(_THIS_IP_, fmt, vargs);		\
804769b0441SFrederic Weisbecker } while (0)
805769b0441SFrederic Weisbecker 
8068db14860SNicolas Iooss extern __printf(2, 0) int
80748ead020SFrederic Weisbecker __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
80848ead020SFrederic Weisbecker 
8098db14860SNicolas Iooss extern __printf(2, 0) int
810526211bcSIngo Molnar __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
811769b0441SFrederic Weisbecker 
812cecbca96SFrederic Weisbecker extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
813526211bcSIngo Molnar #else
814526211bcSIngo Molnar static inline void tracing_start(void) { }
815526211bcSIngo Molnar static inline void tracing_stop(void) { }
816e67bc51eSDhaval Giani static inline void trace_dump_stack(int skip) { }
81793d68e52SSteven Rostedt 
81893d68e52SSteven Rostedt static inline void tracing_on(void) { }
81993d68e52SSteven Rostedt static inline void tracing_off(void) { }
82093d68e52SSteven Rostedt static inline int tracing_is_on(void) { return 0; }
821ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot(void) { }
822ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot_alloc(void) { }
82393d68e52SSteven Rostedt 
82460efc15aSMichal Hocko static inline __printf(1, 2)
82560efc15aSMichal Hocko int trace_printk(const char *fmt, ...)
826526211bcSIngo Molnar {
827526211bcSIngo Molnar 	return 0;
828526211bcSIngo Molnar }
8298db14860SNicolas Iooss static __printf(1, 0) inline int
830526211bcSIngo Molnar ftrace_vprintk(const char *fmt, va_list ap)
831526211bcSIngo Molnar {
832526211bcSIngo Molnar 	return 0;
833526211bcSIngo Molnar }
834cecbca96SFrederic Weisbecker static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
835769b0441SFrederic Weisbecker #endif /* CONFIG_TRACING */
836526211bcSIngo Molnar 
837526211bcSIngo Molnar /*
8383c8ba0d6SKees Cook  * min()/max()/clamp() macros must accomplish three things:
8393c8ba0d6SKees Cook  *
8403c8ba0d6SKees Cook  * - avoid multiple evaluations of the arguments (so side-effects like
8413c8ba0d6SKees Cook  *   "x++" happen only once) when non-constant.
8423c8ba0d6SKees Cook  * - perform strict type-checking (to generate warnings instead of
8433c8ba0d6SKees Cook  *   nasty runtime surprises). See the "unnecessary" pointer comparison
8443c8ba0d6SKees Cook  *   in __typecheck().
8453c8ba0d6SKees Cook  * - retain result as a constant expressions when called with only
8463c8ba0d6SKees Cook  *   constant expressions (to avoid tripping VLA warnings in stack
8473c8ba0d6SKees Cook  *   allocation usage).
8481da177e4SLinus Torvalds  */
8493c8ba0d6SKees Cook #define __typecheck(x, y) \
8503c8ba0d6SKees Cook 		(!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
8513c8ba0d6SKees Cook 
8523c8ba0d6SKees Cook /*
8533c8ba0d6SKees Cook  * This returns a constant expression while determining if an argument is
8543c8ba0d6SKees Cook  * a constant expression, most importantly without evaluating the argument.
8553c8ba0d6SKees Cook  * Glory to Martin Uecker <[email protected]>
8563c8ba0d6SKees Cook  */
8573c8ba0d6SKees Cook #define __is_constexpr(x) \
8583c8ba0d6SKees Cook 	(sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))
8593c8ba0d6SKees Cook 
8603c8ba0d6SKees Cook #define __no_side_effects(x, y) \
8613c8ba0d6SKees Cook 		(__is_constexpr(x) && __is_constexpr(y))
8623c8ba0d6SKees Cook 
8633c8ba0d6SKees Cook #define __safe_cmp(x, y) \
8643c8ba0d6SKees Cook 		(__typecheck(x, y) && __no_side_effects(x, y))
8653c8ba0d6SKees Cook 
8663c8ba0d6SKees Cook #define __cmp(x, y, op)	((x) op (y) ? (x) : (y))
8673c8ba0d6SKees Cook 
868e9092d0dSLinus Torvalds #define __cmp_once(x, y, unique_x, unique_y, op) ({	\
869e9092d0dSLinus Torvalds 		typeof(x) unique_x = (x);		\
870e9092d0dSLinus Torvalds 		typeof(y) unique_y = (y);		\
871e9092d0dSLinus Torvalds 		__cmp(unique_x, unique_y, op); })
8723c8ba0d6SKees Cook 
8733c8ba0d6SKees Cook #define __careful_cmp(x, y, op) \
8743c8ba0d6SKees Cook 	__builtin_choose_expr(__safe_cmp(x, y), \
875e9092d0dSLinus Torvalds 		__cmp(x, y, op), \
876e9092d0dSLinus Torvalds 		__cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op))
877e8c97af0SRandy Dunlap 
878e8c97af0SRandy Dunlap /**
879e8c97af0SRandy Dunlap  * min - return minimum of two values of the same or compatible types
880e8c97af0SRandy Dunlap  * @x: first value
881e8c97af0SRandy Dunlap  * @y: second value
882e8c97af0SRandy Dunlap  */
8833c8ba0d6SKees Cook #define min(x, y)	__careful_cmp(x, y, <)
884e8c97af0SRandy Dunlap 
885e8c97af0SRandy Dunlap /**
886e8c97af0SRandy Dunlap  * max - return maximum of two values of the same or compatible types
887e8c97af0SRandy Dunlap  * @x: first value
888e8c97af0SRandy Dunlap  * @y: second value
889e8c97af0SRandy Dunlap  */
8903c8ba0d6SKees Cook #define max(x, y)	__careful_cmp(x, y, >)
891bdf4bbaaSHarvey Harrison 
892e8c97af0SRandy Dunlap /**
893e8c97af0SRandy Dunlap  * min3 - return minimum of three values
894e8c97af0SRandy Dunlap  * @x: first value
895e8c97af0SRandy Dunlap  * @y: second value
896e8c97af0SRandy Dunlap  * @z: third value
897e8c97af0SRandy Dunlap  */
8982e1d06e1SMichal Nazarewicz #define min3(x, y, z) min((typeof(x))min(x, y), z)
899e8c97af0SRandy Dunlap 
900e8c97af0SRandy Dunlap /**
901e8c97af0SRandy Dunlap  * max3 - return maximum of three values
902e8c97af0SRandy Dunlap  * @x: first value
903e8c97af0SRandy Dunlap  * @y: second value
904e8c97af0SRandy Dunlap  * @z: third value
905e8c97af0SRandy Dunlap  */
9062e1d06e1SMichal Nazarewicz #define max3(x, y, z) max((typeof(x))max(x, y), z)
907f27c85c5SHagen Paul Pfeifer 
908bdf4bbaaSHarvey Harrison /**
909c8bf1336SMartin K. Petersen  * min_not_zero - return the minimum that is _not_ zero, unless both are zero
910c8bf1336SMartin K. Petersen  * @x: value1
911c8bf1336SMartin K. Petersen  * @y: value2
912c8bf1336SMartin K. Petersen  */
913c8bf1336SMartin K. Petersen #define min_not_zero(x, y) ({			\
914c8bf1336SMartin K. Petersen 	typeof(x) __x = (x);			\
915c8bf1336SMartin K. Petersen 	typeof(y) __y = (y);			\
916c8bf1336SMartin K. Petersen 	__x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
917c8bf1336SMartin K. Petersen 
918c8bf1336SMartin K. Petersen /**
919bdf4bbaaSHarvey Harrison  * clamp - return a value clamped to a given range with strict typechecking
920bdf4bbaaSHarvey Harrison  * @val: current value
9212e1d06e1SMichal Nazarewicz  * @lo: lowest allowable value
9222e1d06e1SMichal Nazarewicz  * @hi: highest allowable value
923bdf4bbaaSHarvey Harrison  *
924e8c97af0SRandy Dunlap  * This macro does strict typechecking of @lo/@hi to make sure they are of the
925e8c97af0SRandy Dunlap  * same type as @val.  See the unnecessary pointer comparisons.
926bdf4bbaaSHarvey Harrison  */
9272e1d06e1SMichal Nazarewicz #define clamp(val, lo, hi) min((typeof(val))max(val, lo), hi)
9281da177e4SLinus Torvalds 
9291da177e4SLinus Torvalds /*
9301da177e4SLinus Torvalds  * ..and if you can't take the strict
9311da177e4SLinus Torvalds  * types, you can specify one yourself.
9321da177e4SLinus Torvalds  *
933bdf4bbaaSHarvey Harrison  * Or not use min/max/clamp at all, of course.
9341da177e4SLinus Torvalds  */
935e8c97af0SRandy Dunlap 
936e8c97af0SRandy Dunlap /**
937e8c97af0SRandy Dunlap  * min_t - return minimum of two values, using the specified type
938e8c97af0SRandy Dunlap  * @type: data type to use
939e8c97af0SRandy Dunlap  * @x: first value
940e8c97af0SRandy Dunlap  * @y: second value
941e8c97af0SRandy Dunlap  */
9423c8ba0d6SKees Cook #define min_t(type, x, y)	__careful_cmp((type)(x), (type)(y), <)
9431da177e4SLinus Torvalds 
944e8c97af0SRandy Dunlap /**
945e8c97af0SRandy Dunlap  * max_t - return maximum of two values, using the specified type
946e8c97af0SRandy Dunlap  * @type: data type to use
947e8c97af0SRandy Dunlap  * @x: first value
948e8c97af0SRandy Dunlap  * @y: second value
949e8c97af0SRandy Dunlap  */
9503c8ba0d6SKees Cook #define max_t(type, x, y)	__careful_cmp((type)(x), (type)(y), >)
951bdf4bbaaSHarvey Harrison 
952bdf4bbaaSHarvey Harrison /**
953bdf4bbaaSHarvey Harrison  * clamp_t - return a value clamped to a given range using a given type
954bdf4bbaaSHarvey Harrison  * @type: the type of variable to use
955bdf4bbaaSHarvey Harrison  * @val: current value
956c185b07fSMichal Nazarewicz  * @lo: minimum allowable value
957c185b07fSMichal Nazarewicz  * @hi: maximum allowable value
958bdf4bbaaSHarvey Harrison  *
959bdf4bbaaSHarvey Harrison  * This macro does no typechecking and uses temporary variables of type
960e8c97af0SRandy Dunlap  * @type to make all the comparisons.
961bdf4bbaaSHarvey Harrison  */
962c185b07fSMichal Nazarewicz #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi)
963bdf4bbaaSHarvey Harrison 
964bdf4bbaaSHarvey Harrison /**
965bdf4bbaaSHarvey Harrison  * clamp_val - return a value clamped to a given range using val's type
966bdf4bbaaSHarvey Harrison  * @val: current value
967c185b07fSMichal Nazarewicz  * @lo: minimum allowable value
968c185b07fSMichal Nazarewicz  * @hi: maximum allowable value
969bdf4bbaaSHarvey Harrison  *
970bdf4bbaaSHarvey Harrison  * This macro does no typechecking and uses temporary variables of whatever
971e8c97af0SRandy Dunlap  * type the input argument @val is.  This is useful when @val is an unsigned
972e8c97af0SRandy Dunlap  * type and @lo and @hi are literals that will otherwise be assigned a signed
973bdf4bbaaSHarvey Harrison  * integer type.
974bdf4bbaaSHarvey Harrison  */
975c185b07fSMichal Nazarewicz #define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi)
9761da177e4SLinus Torvalds 
97791f68b73SWu Fengguang 
978e8c97af0SRandy Dunlap /**
979e8c97af0SRandy Dunlap  * swap - swap values of @a and @b
980e8c97af0SRandy Dunlap  * @a: first value
981e8c97af0SRandy Dunlap  * @b: second value
98291f68b73SWu Fengguang  */
983ac7b9004SPeter Zijlstra #define swap(a, b) \
984ac7b9004SPeter Zijlstra 	do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
98591f68b73SWu Fengguang 
986cf14f27fSAlexei Starovoitov /* This counts to 12. Any more, it will return 13th argument. */
987cf14f27fSAlexei Starovoitov #define __COUNT_ARGS(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _n, X...) _n
988cf14f27fSAlexei Starovoitov #define COUNT_ARGS(X...) __COUNT_ARGS(, ##X, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
989cf14f27fSAlexei Starovoitov 
990cf14f27fSAlexei Starovoitov #define __CONCAT(a, b) a ## b
991cf14f27fSAlexei Starovoitov #define CONCATENATE(a, b) __CONCAT(a, b)
992cf14f27fSAlexei Starovoitov 
9931da177e4SLinus Torvalds /**
9941da177e4SLinus Torvalds  * container_of - cast a member of a structure out to the containing structure
9951da177e4SLinus Torvalds  * @ptr:	the pointer to the member.
9961da177e4SLinus Torvalds  * @type:	the type of the container struct this is embedded in.
9971da177e4SLinus Torvalds  * @member:	the name of the member within the struct.
9981da177e4SLinus Torvalds  *
9991da177e4SLinus Torvalds  */
10001da177e4SLinus Torvalds #define container_of(ptr, type, member) ({				\
1001c7acec71SIan Abbott 	void *__mptr = (void *)(ptr);					\
1002c7acec71SIan Abbott 	BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) &&	\
1003c7acec71SIan Abbott 			 !__same_type(*(ptr), void),			\
1004c7acec71SIan Abbott 			 "pointer type mismatch in container_of()");	\
1005c7acec71SIan Abbott 	((type *)(__mptr - offsetof(type, member))); })
10061da177e4SLinus Torvalds 
100705e6557bSNeilBrown /**
100805e6557bSNeilBrown  * container_of_safe - cast a member of a structure out to the containing structure
100905e6557bSNeilBrown  * @ptr:	the pointer to the member.
101005e6557bSNeilBrown  * @type:	the type of the container struct this is embedded in.
101105e6557bSNeilBrown  * @member:	the name of the member within the struct.
101205e6557bSNeilBrown  *
101305e6557bSNeilBrown  * If IS_ERR_OR_NULL(ptr), ptr is returned unchanged.
101405e6557bSNeilBrown  */
101505e6557bSNeilBrown #define container_of_safe(ptr, type, member) ({				\
101605e6557bSNeilBrown 	void *__mptr = (void *)(ptr);					\
101705e6557bSNeilBrown 	BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) &&	\
101805e6557bSNeilBrown 			 !__same_type(*(ptr), void),			\
101905e6557bSNeilBrown 			 "pointer type mismatch in container_of()");	\
1020227abcc6SDan Carpenter 	IS_ERR_OR_NULL(__mptr) ? ERR_CAST(__mptr) :			\
102105e6557bSNeilBrown 		((type *)(__mptr - offsetof(type, member))); })
102205e6557bSNeilBrown 
1023b9d4f426SArnaud Lacombe /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */
1024b9d4f426SArnaud Lacombe #ifdef CONFIG_FTRACE_MCOUNT_RECORD
1025b9d4f426SArnaud Lacombe # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD
1026b9d4f426SArnaud Lacombe #endif
10279d00f92fSWANG Cong 
102858f86cc8SRusty Russell /* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */
102958f86cc8SRusty Russell #define VERIFY_OCTAL_PERMISSIONS(perms)						\
103058f86cc8SRusty Russell 	(BUILD_BUG_ON_ZERO((perms) < 0) +					\
103158f86cc8SRusty Russell 	 BUILD_BUG_ON_ZERO((perms) > 0777) +					\
103228b8d0c8SGobinda Charan Maji 	 /* USER_READABLE >= GROUP_READABLE >= OTHER_READABLE */		\
103328b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 6) & 4) < (((perms) >> 3) & 4)) +	\
103428b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 3) & 4) < ((perms) & 4)) +		\
103528b8d0c8SGobinda Charan Maji 	 /* USER_WRITABLE >= GROUP_WRITABLE */					\
103628b8d0c8SGobinda Charan Maji 	 BUILD_BUG_ON_ZERO((((perms) >> 6) & 2) < (((perms) >> 3) & 2)) +	\
103728b8d0c8SGobinda Charan Maji 	 /* OTHER_WRITABLE?  Generally considered a bad idea. */		\
103837549e94SRusty Russell 	 BUILD_BUG_ON_ZERO((perms) & 2) +					\
103958f86cc8SRusty Russell 	 (perms))
10401da177e4SLinus Torvalds #endif
1041