11da177e4SLinus Torvalds #ifndef _LINUX_KERNEL_H 21da177e4SLinus Torvalds #define _LINUX_KERNEL_H 31da177e4SLinus Torvalds 41da177e4SLinus Torvalds 51da177e4SLinus Torvalds #include <stdarg.h> 61da177e4SLinus Torvalds #include <linux/linkage.h> 71da177e4SLinus Torvalds #include <linux/stddef.h> 81da177e4SLinus Torvalds #include <linux/types.h> 91da177e4SLinus Torvalds #include <linux/compiler.h> 101da177e4SLinus Torvalds #include <linux/bitops.h> 11f0d1b0b3SDavid Howells #include <linux/log2.h> 12e0deaff4SAndrew Morton #include <linux/typecheck.h> 13968ab183SLinus Torvalds #include <linux/printk.h> 14e9d376f0SJason Baron #include <linux/dynamic_debug.h> 151da177e4SLinus Torvalds #include <asm/byteorder.h> 16607ca46eSDavid Howells #include <uapi/linux/kernel.h> 171da177e4SLinus Torvalds 184be929beSAlexey Dobriyan #define USHRT_MAX ((u16)(~0U)) 194be929beSAlexey Dobriyan #define SHRT_MAX ((s16)(USHRT_MAX>>1)) 204be929beSAlexey Dobriyan #define SHRT_MIN ((s16)(-SHRT_MAX - 1)) 211da177e4SLinus Torvalds #define INT_MAX ((int)(~0U>>1)) 221da177e4SLinus Torvalds #define INT_MIN (-INT_MAX - 1) 231da177e4SLinus Torvalds #define UINT_MAX (~0U) 241da177e4SLinus Torvalds #define LONG_MAX ((long)(~0UL>>1)) 251da177e4SLinus Torvalds #define LONG_MIN (-LONG_MAX - 1) 261da177e4SLinus Torvalds #define ULONG_MAX (~0UL) 27111ebb6eSOGAWA Hirofumi #define LLONG_MAX ((long long)(~0ULL>>1)) 28111ebb6eSOGAWA Hirofumi #define LLONG_MIN (-LLONG_MAX - 1) 29111ebb6eSOGAWA Hirofumi #define ULLONG_MAX (~0ULL) 30a3860c1cSXi Wang #define SIZE_MAX (~(size_t)0) 311da177e4SLinus Torvalds 3289a07141SAlex Elder #define U8_MAX ((u8)~0U) 3389a07141SAlex Elder #define S8_MAX ((s8)(U8_MAX>>1)) 3489a07141SAlex Elder #define S8_MIN ((s8)(-S8_MAX - 1)) 3589a07141SAlex Elder #define U16_MAX ((u16)~0U) 3689a07141SAlex Elder #define S16_MAX ((s16)(U16_MAX>>1)) 3789a07141SAlex Elder #define S16_MIN ((s16)(-S16_MAX - 1)) 3889a07141SAlex Elder #define U32_MAX ((u32)~0U) 3989a07141SAlex Elder #define S32_MAX ((s32)(U32_MAX>>1)) 4089a07141SAlex Elder #define S32_MIN ((s32)(-S32_MAX - 1)) 4189a07141SAlex Elder #define U64_MAX ((u64)~0ULL) 4289a07141SAlex Elder #define S64_MAX ((s64)(U64_MAX>>1)) 4389a07141SAlex Elder #define S64_MIN ((s64)(-S64_MAX - 1)) 4489a07141SAlex Elder 451da177e4SLinus Torvalds #define STACK_MAGIC 0xdeadbeef 461da177e4SLinus Torvalds 4744696908SDavid S. Miller #define REPEAT_BYTE(x) ((~0ul / 0xff) * (x)) 4844696908SDavid S. Miller 49a79ff731SAlexey Dobriyan #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) 509f93ff5bSAlexey Dobriyan #define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask)) 51a83308e6SMatthew Wilcox #define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a))) 52f10db627SHerbert Xu #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) 532ea58144SLinus Torvalds 54c5e631cfSRusty Russell #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) 55c5e631cfSRusty Russell 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)) 639b3be9f9SYinghai Lu #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) 649b3be9f9SYinghai Lu #define round_down(x, y) ((x) & ~__round_mask(x, y)) 659b3be9f9SYinghai Lu 664552d5dcSJan Beulich #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) 67930631edSSteven Whitehouse #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) 6836a26c69SNicholas Bellinger #define DIV_ROUND_UP_ULL(ll,d) \ 6936a26c69SNicholas Bellinger ({ unsigned long long _tmp = (ll)+(d)-1; do_div(_tmp, d); _tmp; }) 7036a26c69SNicholas Bellinger 7136a26c69SNicholas Bellinger #if BITS_PER_LONG == 32 7236a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d) 7336a26c69SNicholas Bellinger #else 7436a26c69SNicholas Bellinger # define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP(ll,d) 7536a26c69SNicholas Bellinger #endif 76074e61ecSJames Morris 77074e61ecSJames Morris /* The `const' in roundup() prevents gcc-3.3 from calling __divdi3 */ 78b28efd54SEric Paris #define roundup(x, y) ( \ 79b28efd54SEric Paris { \ 806070bf35STetsuo Handa const typeof(y) __y = y; \ 81b28efd54SEric Paris (((x) + (__y - 1)) / __y) * __y; \ 82b28efd54SEric Paris } \ 83b28efd54SEric Paris ) 84686a0f3dSEric Paris #define rounddown(x, y) ( \ 85686a0f3dSEric Paris { \ 86686a0f3dSEric Paris typeof(x) __x = (x); \ 87686a0f3dSEric Paris __x - (__x % (y)); \ 88686a0f3dSEric Paris } \ 89686a0f3dSEric Paris ) 90b6d86d3dSGuenter Roeck 91b6d86d3dSGuenter Roeck /* 92b6d86d3dSGuenter Roeck * Divide positive or negative dividend by positive divisor and round 93c4e18497SGuenter Roeck * to closest integer. Result is undefined for negative divisors and 94c4e18497SGuenter Roeck * for negative dividends if the divisor variable type is unsigned. 95b6d86d3dSGuenter Roeck */ 969fe06081SDarrick J. Wong #define DIV_ROUND_CLOSEST(x, divisor)( \ 979fe06081SDarrick J. Wong { \ 98b6d86d3dSGuenter Roeck typeof(x) __x = x; \ 99b6d86d3dSGuenter Roeck typeof(divisor) __d = divisor; \ 100c4e18497SGuenter Roeck (((typeof(x))-1) > 0 || \ 101c4e18497SGuenter Roeck ((typeof(divisor))-1) > 0 || (__x) > 0) ? \ 102b6d86d3dSGuenter Roeck (((__x) + ((__d) / 2)) / (__d)) : \ 103b6d86d3dSGuenter Roeck (((__x) - ((__d) / 2)) / (__d)); \ 1049fe06081SDarrick J. Wong } \ 1059fe06081SDarrick J. Wong ) 106f766093eSJavi Merino /* 107f766093eSJavi Merino * Same as above but for u64 dividends. divisor must be a 32-bit 108f766093eSJavi Merino * number. 109f766093eSJavi Merino */ 110f766093eSJavi Merino #define DIV_ROUND_CLOSEST_ULL(x, divisor)( \ 111f766093eSJavi Merino { \ 112f766093eSJavi Merino typeof(divisor) __d = divisor; \ 113f766093eSJavi Merino unsigned long long _tmp = (x) + (__d) / 2; \ 114f766093eSJavi Merino do_div(_tmp, __d); \ 115f766093eSJavi Merino _tmp; \ 116f766093eSJavi Merino } \ 117f766093eSJavi Merino ) 1181da177e4SLinus Torvalds 1199993bc63SSalman Qazi /* 1209993bc63SSalman Qazi * Multiplies an integer by a fraction, while avoiding unnecessary 1219993bc63SSalman Qazi * overflow or loss of precision. 1229993bc63SSalman Qazi */ 1239993bc63SSalman Qazi #define mult_frac(x, numer, denom)( \ 1249993bc63SSalman Qazi { \ 1259993bc63SSalman Qazi typeof(x) quot = (x) / (denom); \ 1269993bc63SSalman Qazi typeof(x) rem = (x) % (denom); \ 1279993bc63SSalman Qazi (quot * (numer)) + ((rem * (numer)) / (denom)); \ 1289993bc63SSalman Qazi } \ 1299993bc63SSalman Qazi ) 1309993bc63SSalman Qazi 1319993bc63SSalman Qazi 132ca31e146SEduard - Gabriel Munteanu #define _RET_IP_ (unsigned long)__builtin_return_address(0) 133ca31e146SEduard - Gabriel Munteanu #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) 134ca31e146SEduard - Gabriel Munteanu 13590c699a9SBartlomiej Zolnierkiewicz #ifdef CONFIG_LBDAF 1362da96acdSJens Axboe # include <asm/div64.h> 1372da96acdSJens Axboe # define sector_div(a, b) do_div(a, b) 1382da96acdSJens Axboe #else 1392da96acdSJens Axboe # define sector_div(n, b)( \ 1402da96acdSJens Axboe { \ 1412da96acdSJens Axboe int _res; \ 1422da96acdSJens Axboe _res = (n) % (b); \ 1432da96acdSJens Axboe (n) /= (b); \ 1442da96acdSJens Axboe _res; \ 1452da96acdSJens Axboe } \ 1462da96acdSJens Axboe ) 1472da96acdSJens Axboe #endif 1482da96acdSJens Axboe 149218e180eSAndrew Morton /** 150218e180eSAndrew Morton * upper_32_bits - return bits 32-63 of a number 151218e180eSAndrew Morton * @n: the number we're accessing 152218e180eSAndrew Morton * 153218e180eSAndrew Morton * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress 154218e180eSAndrew Morton * the "right shift count >= width of type" warning when that quantity is 155218e180eSAndrew Morton * 32-bits. 156218e180eSAndrew Morton */ 157218e180eSAndrew Morton #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) 158218e180eSAndrew Morton 159204b885eSJoerg Roedel /** 160204b885eSJoerg Roedel * lower_32_bits - return bits 0-31 of a number 161204b885eSJoerg Roedel * @n: the number we're accessing 162204b885eSJoerg Roedel */ 163204b885eSJoerg Roedel #define lower_32_bits(n) ((u32)(n)) 164204b885eSJoerg Roedel 1651da177e4SLinus Torvalds struct completion; 166df2e71fbS[email protected] struct pt_regs; 167df2e71fbS[email protected] struct user; 1681da177e4SLinus Torvalds 169070cb065SUwe Kleine-König #ifdef CONFIG_PREEMPT_VOLUNTARY 170070cb065SUwe Kleine-König extern int _cond_resched(void); 171070cb065SUwe Kleine-König # define might_resched() _cond_resched() 172070cb065SUwe Kleine-König #else 173070cb065SUwe Kleine-König # define might_resched() do { } while (0) 174070cb065SUwe Kleine-König #endif 175070cb065SUwe Kleine-König 176d902db1eSFrederic Weisbecker #ifdef CONFIG_DEBUG_ATOMIC_SLEEP 1773427445aSPeter Zijlstra void ___might_sleep(const char *file, int line, int preempt_offset); 178d894837fSSimon Kagstrom void __might_sleep(const char *file, int line, int preempt_offset); 1791da177e4SLinus Torvalds /** 1801da177e4SLinus Torvalds * might_sleep - annotation for functions that can sleep 1811da177e4SLinus Torvalds * 1821da177e4SLinus Torvalds * this macro will print a stack trace if it is executed in an atomic 1831da177e4SLinus Torvalds * context (spinlock, irq-handler, ...). 1841da177e4SLinus Torvalds * 1851da177e4SLinus Torvalds * This is a useful debugging help to be able to catch problems early and not 186e20ec991SJim Cromie * be bitten later when the calling function happens to sleep when it is not 1871da177e4SLinus Torvalds * supposed to. 1881da177e4SLinus Torvalds */ 189f8cbd99bSIngo Molnar # define might_sleep() \ 190e4aafea2SFrederic Weisbecker do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0) 19100845eb9SLinus Torvalds # define sched_annotate_sleep() (current->task_state_change = 0) 192f8cbd99bSIngo Molnar #else 1933427445aSPeter Zijlstra static inline void ___might_sleep(const char *file, int line, 1943427445aSPeter Zijlstra int preempt_offset) { } 195d894837fSSimon Kagstrom static inline void __might_sleep(const char *file, int line, 196d894837fSSimon Kagstrom int preempt_offset) { } 197f8cbd99bSIngo Molnar # define might_sleep() do { might_resched(); } while (0) 1981029a2b5SPeter Zijlstra # define sched_annotate_sleep() do { } while (0) 199f8cbd99bSIngo Molnar #endif 200f8cbd99bSIngo Molnar 201368a5fa1SHua Zhong #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) 202f8cbd99bSIngo Molnar 203*c8299cb6SMichal Nazarewicz /** 204*c8299cb6SMichal Nazarewicz * abs - return absolute value of an argument 205*c8299cb6SMichal Nazarewicz * @x: the value. If it is unsigned type, it is converted to signed type first 206*c8299cb6SMichal Nazarewicz * (s64, long or int depending on its size). 207*c8299cb6SMichal Nazarewicz * 208*c8299cb6SMichal Nazarewicz * Return: an absolute value of x. If x is 64-bit, macro's return type is s64, 209*c8299cb6SMichal Nazarewicz * otherwise it is signed long. 21071a90484SAndrew Morton */ 211*c8299cb6SMichal Nazarewicz #define abs(x) __builtin_choose_expr(sizeof(x) == sizeof(s64), ({ \ 212*c8299cb6SMichal Nazarewicz s64 __x = (x); \ 213*c8299cb6SMichal Nazarewicz (__x < 0) ? -__x : __x; \ 214*c8299cb6SMichal Nazarewicz }), ({ \ 21571a90484SAndrew Morton long ret; \ 21671a90484SAndrew Morton if (sizeof(x) == sizeof(long)) { \ 217a49c59c0SRolf Eike Beer long __x = (x); \ 21871a90484SAndrew Morton ret = (__x < 0) ? -__x : __x; \ 21971a90484SAndrew Morton } else { \ 22071a90484SAndrew Morton int __x = (x); \ 22171a90484SAndrew Morton ret = (__x < 0) ? -__x : __x; \ 22271a90484SAndrew Morton } \ 22371a90484SAndrew Morton ret; \ 224*c8299cb6SMichal Nazarewicz })) 2251da177e4SLinus Torvalds 226*c8299cb6SMichal Nazarewicz /* Deprecated, use abs instead. */ 227*c8299cb6SMichal Nazarewicz #define abs64(x) abs((s64)(x)) 228658716d1SBrian Behlendorf 22989770b0aSDaniel Borkmann /** 23089770b0aSDaniel Borkmann * reciprocal_scale - "scale" a value into range [0, ep_ro) 23189770b0aSDaniel Borkmann * @val: value 23289770b0aSDaniel Borkmann * @ep_ro: right open interval endpoint 23389770b0aSDaniel Borkmann * 23489770b0aSDaniel Borkmann * Perform a "reciprocal multiplication" in order to "scale" a value into 23589770b0aSDaniel Borkmann * range [0, ep_ro), where the upper interval endpoint is right-open. 23689770b0aSDaniel Borkmann * This is useful, e.g. for accessing a index of an array containing 23789770b0aSDaniel Borkmann * ep_ro elements, for example. Think of it as sort of modulus, only that 23889770b0aSDaniel Borkmann * the result isn't that of modulo. ;) Note that if initial input is a 23989770b0aSDaniel Borkmann * small value, then result will return 0. 24089770b0aSDaniel Borkmann * 24189770b0aSDaniel Borkmann * Return: a result based on val in interval [0, ep_ro). 24289770b0aSDaniel Borkmann */ 24389770b0aSDaniel Borkmann static inline u32 reciprocal_scale(u32 val, u32 ep_ro) 24489770b0aSDaniel Borkmann { 24589770b0aSDaniel Borkmann return (u32)(((u64) val * ep_ro) >> 32); 24689770b0aSDaniel Borkmann } 24789770b0aSDaniel Borkmann 248386e7906SAxel Lin #if defined(CONFIG_MMU) && \ 249386e7906SAxel Lin (defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)) 2509ec23531SDavid Hildenbrand #define might_fault() __might_fault(__FILE__, __LINE__) 2519ec23531SDavid Hildenbrand void __might_fault(const char *file, int line); 2523ee1afa3SNick Piggin #else 253662bbcb2SMichael S. Tsirkin static inline void might_fault(void) { } 2543ee1afa3SNick Piggin #endif 2553ee1afa3SNick Piggin 256e041c683SAlan Stern extern struct atomic_notifier_head panic_notifier_list; 257c7ff0d9cSTAMUKI Shoichi extern long (*panic_blink)(int state); 2589402c95fSJoe Perches __printf(1, 2) 2594da47859SJoe Perches void panic(const char *fmt, ...) 260ff2d8b19SJoe Perches __noreturn __cold; 261dd287796SAndrew Morton extern void oops_enter(void); 262dd287796SAndrew Morton extern void oops_exit(void); 263863a6049SAnton Blanchard void print_oops_end_marker(void); 264dd287796SAndrew Morton extern int oops_may_print(void); 2659402c95fSJoe Perches void do_exit(long error_code) 266ff2d8b19SJoe Perches __noreturn; 2679402c95fSJoe Perches void complete_and_exit(struct completion *, long) 268ff2d8b19SJoe Perches __noreturn; 26933ee3b2eSAlexey Dobriyan 27033ee3b2eSAlexey Dobriyan /* Internal, do not use. */ 27133ee3b2eSAlexey Dobriyan int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res); 27233ee3b2eSAlexey Dobriyan int __must_check _kstrtol(const char *s, unsigned int base, long *res); 27333ee3b2eSAlexey Dobriyan 27433ee3b2eSAlexey Dobriyan int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 27533ee3b2eSAlexey Dobriyan int __must_check kstrtoll(const char *s, unsigned int base, long long *res); 2764c925d60SEldad Zack 2774c925d60SEldad Zack /** 2784c925d60SEldad Zack * kstrtoul - convert a string to an unsigned long 2794c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 2804c925d60SEldad Zack * include a single newline before its terminating null. The first character 2814c925d60SEldad Zack * may also be a plus sign, but not a minus sign. 2824c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 2834c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 2844c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 2854c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 2864c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 2874c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 2884c925d60SEldad Zack * 2894c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 2904c925d60SEldad Zack * Used as a replacement for the obsolete simple_strtoull. Return code must 2914c925d60SEldad Zack * be checked. 2924c925d60SEldad Zack */ 29333ee3b2eSAlexey Dobriyan static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) 29433ee3b2eSAlexey Dobriyan { 29533ee3b2eSAlexey Dobriyan /* 29633ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 29733ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0. 29833ee3b2eSAlexey Dobriyan */ 29933ee3b2eSAlexey Dobriyan if (sizeof(unsigned long) == sizeof(unsigned long long) && 30033ee3b2eSAlexey Dobriyan __alignof__(unsigned long) == __alignof__(unsigned long long)) 30133ee3b2eSAlexey Dobriyan return kstrtoull(s, base, (unsigned long long *)res); 30233ee3b2eSAlexey Dobriyan else 30333ee3b2eSAlexey Dobriyan return _kstrtoul(s, base, res); 30433ee3b2eSAlexey Dobriyan } 30533ee3b2eSAlexey Dobriyan 3064c925d60SEldad Zack /** 3074c925d60SEldad Zack * kstrtol - convert a string to a long 3084c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 3094c925d60SEldad Zack * include a single newline before its terminating null. The first character 3104c925d60SEldad Zack * may also be a plus sign or a minus sign. 3114c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 3124c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 3134c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 3144c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 3154c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 3164c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 3174c925d60SEldad Zack * 3184c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 3194c925d60SEldad Zack * Used as a replacement for the obsolete simple_strtoull. Return code must 3204c925d60SEldad Zack * be checked. 3214c925d60SEldad Zack */ 32233ee3b2eSAlexey Dobriyan static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) 32333ee3b2eSAlexey Dobriyan { 32433ee3b2eSAlexey Dobriyan /* 32533ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 32633ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(long, long long) = 0. 32733ee3b2eSAlexey Dobriyan */ 32833ee3b2eSAlexey Dobriyan if (sizeof(long) == sizeof(long long) && 32933ee3b2eSAlexey Dobriyan __alignof__(long) == __alignof__(long long)) 33033ee3b2eSAlexey Dobriyan return kstrtoll(s, base, (long long *)res); 33133ee3b2eSAlexey Dobriyan else 33233ee3b2eSAlexey Dobriyan return _kstrtol(s, base, res); 33333ee3b2eSAlexey Dobriyan } 33433ee3b2eSAlexey Dobriyan 33533ee3b2eSAlexey Dobriyan int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res); 33633ee3b2eSAlexey Dobriyan int __must_check kstrtoint(const char *s, unsigned int base, int *res); 33733ee3b2eSAlexey Dobriyan 33833ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) 33933ee3b2eSAlexey Dobriyan { 34033ee3b2eSAlexey Dobriyan return kstrtoull(s, base, res); 34133ee3b2eSAlexey Dobriyan } 34233ee3b2eSAlexey Dobriyan 34333ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) 34433ee3b2eSAlexey Dobriyan { 34533ee3b2eSAlexey Dobriyan return kstrtoll(s, base, res); 34633ee3b2eSAlexey Dobriyan } 34733ee3b2eSAlexey Dobriyan 34833ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) 34933ee3b2eSAlexey Dobriyan { 35033ee3b2eSAlexey Dobriyan return kstrtouint(s, base, res); 35133ee3b2eSAlexey Dobriyan } 35233ee3b2eSAlexey Dobriyan 35333ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) 35433ee3b2eSAlexey Dobriyan { 35533ee3b2eSAlexey Dobriyan return kstrtoint(s, base, res); 35633ee3b2eSAlexey Dobriyan } 35733ee3b2eSAlexey Dobriyan 35833ee3b2eSAlexey Dobriyan int __must_check kstrtou16(const char *s, unsigned int base, u16 *res); 35933ee3b2eSAlexey Dobriyan int __must_check kstrtos16(const char *s, unsigned int base, s16 *res); 36033ee3b2eSAlexey Dobriyan int __must_check kstrtou8(const char *s, unsigned int base, u8 *res); 36133ee3b2eSAlexey Dobriyan int __must_check kstrtos8(const char *s, unsigned int base, s8 *res); 36233ee3b2eSAlexey Dobriyan 363c196e32aSAlexey Dobriyan int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res); 364c196e32aSAlexey Dobriyan int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res); 365c196e32aSAlexey Dobriyan int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res); 366c196e32aSAlexey Dobriyan int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res); 367c196e32aSAlexey Dobriyan int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res); 368c196e32aSAlexey Dobriyan int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res); 369c196e32aSAlexey Dobriyan int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res); 370c196e32aSAlexey Dobriyan int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res); 371c196e32aSAlexey Dobriyan int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res); 372c196e32aSAlexey Dobriyan int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res); 373c196e32aSAlexey Dobriyan 374c196e32aSAlexey Dobriyan static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res) 375c196e32aSAlexey Dobriyan { 376c196e32aSAlexey Dobriyan return kstrtoull_from_user(s, count, base, res); 377c196e32aSAlexey Dobriyan } 378c196e32aSAlexey Dobriyan 379c196e32aSAlexey Dobriyan static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) 380c196e32aSAlexey Dobriyan { 381c196e32aSAlexey Dobriyan return kstrtoll_from_user(s, count, base, res); 382c196e32aSAlexey Dobriyan } 383c196e32aSAlexey Dobriyan 384c196e32aSAlexey Dobriyan static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res) 385c196e32aSAlexey Dobriyan { 386c196e32aSAlexey Dobriyan return kstrtouint_from_user(s, count, base, res); 387c196e32aSAlexey Dobriyan } 388c196e32aSAlexey Dobriyan 389c196e32aSAlexey Dobriyan static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res) 390c196e32aSAlexey Dobriyan { 391c196e32aSAlexey Dobriyan return kstrtoint_from_user(s, count, base, res); 392c196e32aSAlexey Dobriyan } 393c196e32aSAlexey Dobriyan 39467d0a075SJoe Perches /* Obsolete, do not use. Use kstrto<foo> instead */ 39567d0a075SJoe Perches 3961da177e4SLinus Torvalds extern unsigned long simple_strtoul(const char *,char **,unsigned int); 3971da177e4SLinus Torvalds extern long simple_strtol(const char *,char **,unsigned int); 3981da177e4SLinus Torvalds extern unsigned long long simple_strtoull(const char *,char **,unsigned int); 3991da177e4SLinus Torvalds extern long long simple_strtoll(const char *,char **,unsigned int); 40033ee3b2eSAlexey Dobriyan 4011ac101a5SKAMEZAWA Hiroyuki extern int num_to_str(char *buf, int size, unsigned long long num); 4021ac101a5SKAMEZAWA Hiroyuki 40367d0a075SJoe Perches /* lib/printf utilities */ 40467d0a075SJoe Perches 405b9075fa9SJoe Perches extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...); 406b9075fa9SJoe Perches extern __printf(2, 0) int vsprintf(char *buf, const char *, va_list); 407b9075fa9SJoe Perches extern __printf(3, 4) 408b9075fa9SJoe Perches int snprintf(char *buf, size_t size, const char *fmt, ...); 409b9075fa9SJoe Perches extern __printf(3, 0) 410b9075fa9SJoe Perches int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 411b9075fa9SJoe Perches extern __printf(3, 4) 412b9075fa9SJoe Perches int scnprintf(char *buf, size_t size, const char *fmt, ...); 413b9075fa9SJoe Perches extern __printf(3, 0) 414b9075fa9SJoe Perches int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 415b9075fa9SJoe Perches extern __printf(2, 3) 416b9075fa9SJoe Perches char *kasprintf(gfp_t gfp, const char *fmt, ...); 4178db14860SNicolas Iooss extern __printf(2, 0) 4188db14860SNicolas Iooss char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 4190a9df786SRasmus Villemoes extern __printf(2, 0) 4200a9df786SRasmus Villemoes const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args); 4211da177e4SLinus Torvalds 4226061d949SJoe Perches extern __scanf(2, 3) 4236061d949SJoe Perches int sscanf(const char *, const char *, ...); 4246061d949SJoe Perches extern __scanf(2, 0) 4256061d949SJoe Perches int vsscanf(const char *, const char *, va_list); 4261da177e4SLinus Torvalds 4271da177e4SLinus Torvalds extern int get_option(char **str, int *pint); 4281da177e4SLinus Torvalds extern char *get_options(const char *str, int nints, int *ints); 429d974ae37SJeremy Fitzhardinge extern unsigned long long memparse(const char *ptr, char **retptr); 4306ccc72b8SDave Young extern bool parse_option_str(const char *str, const char *option); 4311da177e4SLinus Torvalds 4325e376613STrent Piepho extern int core_kernel_text(unsigned long addr); 433cdbe61bfSSteven Rostedt extern int core_kernel_data(unsigned long addr); 4341da177e4SLinus Torvalds extern int __kernel_text_address(unsigned long addr); 4351da177e4SLinus Torvalds extern int kernel_text_address(unsigned long addr); 436ab7476cfSArjan van de Ven extern int func_ptr_is_kernel_text(void *ptr); 437ab7476cfSArjan van de Ven 4381da177e4SLinus Torvalds unsigned long int_sqrt(unsigned long); 4391da177e4SLinus Torvalds 4401da177e4SLinus Torvalds extern void bust_spinlocks(int yes); 4411da177e4SLinus Torvalds extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ 442aa727107SAdrian Bunk extern int panic_timeout; 4431da177e4SLinus Torvalds extern int panic_on_oops; 4448da5addaSDon Zickus extern int panic_on_unrecovered_nmi; 4455211a242SKurt Garloff extern int panic_on_io_nmi; 4469e3961a0SPrarit Bhargava extern int panic_on_warn; 44755af7796SMitsuo Hayasaka extern int sysctl_panic_on_stackoverflow; 4485375b708SHATAYAMA Daisuke 4495375b708SHATAYAMA Daisuke extern bool crash_kexec_post_notifiers; 4505375b708SHATAYAMA Daisuke 4515800dc3cSJason Baron /* 4525800dc3cSJason Baron * Only to be used by arch init code. If the user over-wrote the default 4535800dc3cSJason Baron * CONFIG_PANIC_TIMEOUT, honor it. 4545800dc3cSJason Baron */ 4555800dc3cSJason Baron static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout) 4565800dc3cSJason Baron { 4575800dc3cSJason Baron if (panic_timeout == arch_default_timeout) 4585800dc3cSJason Baron panic_timeout = timeout; 4595800dc3cSJason Baron } 4601da177e4SLinus Torvalds extern const char *print_tainted(void); 461373d4d09SRusty Russell enum lockdep_ok { 462373d4d09SRusty Russell LOCKDEP_STILL_OK, 463373d4d09SRusty Russell LOCKDEP_NOW_UNRELIABLE 464373d4d09SRusty Russell }; 465373d4d09SRusty Russell extern void add_taint(unsigned flag, enum lockdep_ok); 46625ddbb18SAndi Kleen extern int test_taint(unsigned flag); 46725ddbb18SAndi Kleen extern unsigned long get_taint(void); 468b920de1bSDavid Howells extern int root_mountflags; 4691da177e4SLinus Torvalds 4702ce802f6STejun Heo extern bool early_boot_irqs_disabled; 4712ce802f6STejun Heo 4721da177e4SLinus Torvalds /* Values used for system_state */ 4731da177e4SLinus Torvalds extern enum system_states { 4741da177e4SLinus Torvalds SYSTEM_BOOTING, 4751da177e4SLinus Torvalds SYSTEM_RUNNING, 4761da177e4SLinus Torvalds SYSTEM_HALT, 4771da177e4SLinus Torvalds SYSTEM_POWER_OFF, 4781da177e4SLinus Torvalds SYSTEM_RESTART, 4791da177e4SLinus Torvalds } system_state; 4801da177e4SLinus Torvalds 48125ddbb18SAndi Kleen #define TAINT_PROPRIETARY_MODULE 0 48225ddbb18SAndi Kleen #define TAINT_FORCED_MODULE 1 4838c90487cSDave Jones #define TAINT_CPU_OUT_OF_SPEC 2 48425ddbb18SAndi Kleen #define TAINT_FORCED_RMMOD 3 48525ddbb18SAndi Kleen #define TAINT_MACHINE_CHECK 4 48625ddbb18SAndi Kleen #define TAINT_BAD_PAGE 5 48725ddbb18SAndi Kleen #define TAINT_USER 6 48825ddbb18SAndi Kleen #define TAINT_DIE 7 48925ddbb18SAndi Kleen #define TAINT_OVERRIDDEN_ACPI_TABLE 8 49025ddbb18SAndi Kleen #define TAINT_WARN 9 49126e9a397SLinus Torvalds #define TAINT_CRAP 10 49292946bc7SBen Hutchings #define TAINT_FIRMWARE_WORKAROUND 11 4932449b8baSBen Hutchings #define TAINT_OOT_MODULE 12 49466cc69e3SMathieu Desnoyers #define TAINT_UNSIGNED_MODULE 13 49569361eefSJosh Hunt #define TAINT_SOFTLOCKUP 14 496c5f45465SSeth Jennings #define TAINT_LIVEPATCH 15 4971da177e4SLinus Torvalds 4983fc95772SHarvey Harrison extern const char hex_asc[]; 4993fc95772SHarvey Harrison #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] 5003fc95772SHarvey Harrison #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] 5013fc95772SHarvey Harrison 50255036ba7SAndy Shevchenko static inline char *hex_byte_pack(char *buf, u8 byte) 5033fc95772SHarvey Harrison { 5043fc95772SHarvey Harrison *buf++ = hex_asc_hi(byte); 5053fc95772SHarvey Harrison *buf++ = hex_asc_lo(byte); 5063fc95772SHarvey Harrison return buf; 5073fc95772SHarvey Harrison } 50899eaf3c4SRandy Dunlap 509c26d436cSAndre Naujoks extern const char hex_asc_upper[]; 510c26d436cSAndre Naujoks #define hex_asc_upper_lo(x) hex_asc_upper[((x) & 0x0f)] 511c26d436cSAndre Naujoks #define hex_asc_upper_hi(x) hex_asc_upper[((x) & 0xf0) >> 4] 512c26d436cSAndre Naujoks 513c26d436cSAndre Naujoks static inline char *hex_byte_pack_upper(char *buf, u8 byte) 514c26d436cSAndre Naujoks { 515c26d436cSAndre Naujoks *buf++ = hex_asc_upper_hi(byte); 516c26d436cSAndre Naujoks *buf++ = hex_asc_upper_lo(byte); 517c26d436cSAndre Naujoks return buf; 518c26d436cSAndre Naujoks } 519c26d436cSAndre Naujoks 52090378889SAndy Shevchenko extern int hex_to_bin(char ch); 521b7804983SMimi Zohar extern int __must_check hex2bin(u8 *dst, const char *src, size_t count); 52253d91c5cSDavid Howells extern char *bin2hex(char *dst, const void *src, size_t count); 52390378889SAndy Shevchenko 524a69f5edbSJoe Perches bool mac_pton(const char *s, u8 *mac); 5254cd5773aSAndy Shevchenko 5268a64f336SJoe Perches /* 527526211bcSIngo Molnar * General tracing related utility functions - trace_printk(), 5282002c258SSteven Rostedt * tracing_on/tracing_off and tracing_start()/tracing_stop 5292002c258SSteven Rostedt * 5302002c258SSteven Rostedt * Use tracing_on/tracing_off when you want to quickly turn on or off 5312002c258SSteven Rostedt * tracing. It simply enables or disables the recording of the trace events. 532156f5a78SGeunSik Lim * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on 5332002c258SSteven Rostedt * file, which gives a means for the kernel and userspace to interact. 5342002c258SSteven Rostedt * Place a tracing_off() in the kernel where you want tracing to end. 5352002c258SSteven Rostedt * From user space, examine the trace, and then echo 1 > tracing_on 5362002c258SSteven Rostedt * to continue tracing. 5372002c258SSteven Rostedt * 5382002c258SSteven Rostedt * tracing_stop/tracing_start has slightly more overhead. It is used 5392002c258SSteven Rostedt * by things like suspend to ram where disabling the recording of the 5402002c258SSteven Rostedt * trace is not enough, but tracing must actually stop because things 5412002c258SSteven Rostedt * like calling smp_processor_id() may crash the system. 5422002c258SSteven Rostedt * 5432002c258SSteven Rostedt * Most likely, you want to use tracing_on/tracing_off. 544526211bcSIngo Molnar */ 545cecbca96SFrederic Weisbecker 546cecbca96SFrederic Weisbecker enum ftrace_dump_mode { 547cecbca96SFrederic Weisbecker DUMP_NONE, 548cecbca96SFrederic Weisbecker DUMP_ALL, 549cecbca96SFrederic Weisbecker DUMP_ORIG, 550cecbca96SFrederic Weisbecker }; 551cecbca96SFrederic Weisbecker 552526211bcSIngo Molnar #ifdef CONFIG_TRACING 55393d68e52SSteven Rostedt void tracing_on(void); 55493d68e52SSteven Rostedt void tracing_off(void); 55593d68e52SSteven Rostedt int tracing_is_on(void); 556ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot(void); 557ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot_alloc(void); 55893d68e52SSteven Rostedt 559526211bcSIngo Molnar extern void tracing_start(void); 560526211bcSIngo Molnar extern void tracing_stop(void); 561526211bcSIngo Molnar 562b9075fa9SJoe Perches static inline __printf(1, 2) 563b9075fa9SJoe Perches void ____trace_printk_check_format(const char *fmt, ...) 564769b0441SFrederic Weisbecker { 565769b0441SFrederic Weisbecker } 566769b0441SFrederic Weisbecker #define __trace_printk_check_format(fmt, args...) \ 567769b0441SFrederic Weisbecker do { \ 568769b0441SFrederic Weisbecker if (0) \ 569769b0441SFrederic Weisbecker ____trace_printk_check_format(fmt, ##args); \ 570769b0441SFrederic Weisbecker } while (0) 571769b0441SFrederic Weisbecker 572526211bcSIngo Molnar /** 573526211bcSIngo Molnar * trace_printk - printf formatting in the ftrace buffer 574526211bcSIngo Molnar * @fmt: the printf format for printing 575526211bcSIngo Molnar * 576526211bcSIngo Molnar * Note: __trace_printk is an internal function for trace_printk and 577526211bcSIngo Molnar * the @ip is passed in via the trace_printk macro. 578526211bcSIngo Molnar * 579526211bcSIngo Molnar * This function allows a kernel developer to debug fast path sections 580526211bcSIngo Molnar * that printk is not appropriate for. By scattering in various 581526211bcSIngo Molnar * printk like tracing in the code, a developer can quickly see 582526211bcSIngo Molnar * where problems are occurring. 583526211bcSIngo Molnar * 584526211bcSIngo Molnar * This is intended as a debugging tool for the developer only. 585526211bcSIngo Molnar * Please refrain from leaving trace_printks scattered around in 58609ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 58709ae7234SSteven Rostedt (Red Hat) * allocated when trace_printk() is used) 5889d3c752cSSteven Rostedt (Red Hat) * 5899d3c752cSSteven Rostedt (Red Hat) * A little optization trick is done here. If there's only one 5909d3c752cSSteven Rostedt (Red Hat) * argument, there's no need to scan the string for printf formats. 5919d3c752cSSteven Rostedt (Red Hat) * The trace_puts() will suffice. But how can we take advantage of 5929d3c752cSSteven Rostedt (Red Hat) * using trace_puts() when trace_printk() has only one argument? 5939d3c752cSSteven Rostedt (Red Hat) * By stringifying the args and checking the size we can tell 5949d3c752cSSteven Rostedt (Red Hat) * whether or not there are args. __stringify((__VA_ARGS__)) will 5959d3c752cSSteven Rostedt (Red Hat) * turn into "()\0" with a size of 3 when there are no args, anything 5969d3c752cSSteven Rostedt (Red Hat) * else will be bigger. All we need to do is define a string to this, 5979d3c752cSSteven Rostedt (Red Hat) * and then take its size and compare to 3. If it's bigger, use 5989d3c752cSSteven Rostedt (Red Hat) * do_trace_printk() otherwise, optimize it to trace_puts(). Then just 5999d3c752cSSteven Rostedt (Red Hat) * let gcc optimize the rest. 600526211bcSIngo Molnar */ 601769b0441SFrederic Weisbecker 6029d3c752cSSteven Rostedt (Red Hat) #define trace_printk(fmt, ...) \ 6039d3c752cSSteven Rostedt (Red Hat) do { \ 6049d3c752cSSteven Rostedt (Red Hat) char _______STR[] = __stringify((__VA_ARGS__)); \ 6059d3c752cSSteven Rostedt (Red Hat) if (sizeof(_______STR) > 3) \ 6069d3c752cSSteven Rostedt (Red Hat) do_trace_printk(fmt, ##__VA_ARGS__); \ 6079d3c752cSSteven Rostedt (Red Hat) else \ 6089d3c752cSSteven Rostedt (Red Hat) trace_puts(fmt); \ 6099d3c752cSSteven Rostedt (Red Hat) } while (0) 6109d3c752cSSteven Rostedt (Red Hat) 6119d3c752cSSteven Rostedt (Red Hat) #define do_trace_printk(fmt, args...) \ 612769b0441SFrederic Weisbecker do { \ 61348ead020SFrederic Weisbecker static const char *trace_printk_fmt \ 61448ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 61548ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 61648ead020SFrederic Weisbecker \ 61707d777feSSteven Rostedt __trace_printk_check_format(fmt, ##args); \ 61807d777feSSteven Rostedt \ 61907d777feSSteven Rostedt if (__builtin_constant_p(fmt)) \ 62048ead020SFrederic Weisbecker __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ 62107d777feSSteven Rostedt else \ 62248ead020SFrederic Weisbecker __trace_printk(_THIS_IP_, fmt, ##args); \ 623769b0441SFrederic Weisbecker } while (0) 624769b0441SFrederic Weisbecker 625b9075fa9SJoe Perches extern __printf(2, 3) 626b9075fa9SJoe Perches int __trace_bprintk(unsigned long ip, const char *fmt, ...); 62748ead020SFrederic Weisbecker 628b9075fa9SJoe Perches extern __printf(2, 3) 629b9075fa9SJoe Perches int __trace_printk(unsigned long ip, const char *fmt, ...); 630769b0441SFrederic Weisbecker 63109ae7234SSteven Rostedt (Red Hat) /** 63209ae7234SSteven Rostedt (Red Hat) * trace_puts - write a string into the ftrace buffer 63309ae7234SSteven Rostedt (Red Hat) * @str: the string to record 63409ae7234SSteven Rostedt (Red Hat) * 63509ae7234SSteven Rostedt (Red Hat) * Note: __trace_bputs is an internal function for trace_puts and 63609ae7234SSteven Rostedt (Red Hat) * the @ip is passed in via the trace_puts macro. 63709ae7234SSteven Rostedt (Red Hat) * 63809ae7234SSteven Rostedt (Red Hat) * This is similar to trace_printk() but is made for those really fast 63909ae7234SSteven Rostedt (Red Hat) * paths that a developer wants the least amount of "Heisenbug" affects, 64009ae7234SSteven Rostedt (Red Hat) * where the processing of the print format is still too much. 64109ae7234SSteven Rostedt (Red Hat) * 64209ae7234SSteven Rostedt (Red Hat) * This function allows a kernel developer to debug fast path sections 64309ae7234SSteven Rostedt (Red Hat) * that printk is not appropriate for. By scattering in various 64409ae7234SSteven Rostedt (Red Hat) * printk like tracing in the code, a developer can quickly see 64509ae7234SSteven Rostedt (Red Hat) * where problems are occurring. 64609ae7234SSteven Rostedt (Red Hat) * 64709ae7234SSteven Rostedt (Red Hat) * This is intended as a debugging tool for the developer only. 64809ae7234SSteven Rostedt (Red Hat) * Please refrain from leaving trace_puts scattered around in 64909ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 65009ae7234SSteven Rostedt (Red Hat) * allocated when trace_puts() is used) 65109ae7234SSteven Rostedt (Red Hat) * 65209ae7234SSteven Rostedt (Red Hat) * Returns: 0 if nothing was written, positive # if string was. 65309ae7234SSteven Rostedt (Red Hat) * (1 when __trace_bputs is used, strlen(str) when __trace_puts is used) 65409ae7234SSteven Rostedt (Red Hat) */ 65509ae7234SSteven Rostedt (Red Hat) 65609ae7234SSteven Rostedt (Red Hat) #define trace_puts(str) ({ \ 65709ae7234SSteven Rostedt (Red Hat) static const char *trace_printk_fmt \ 65809ae7234SSteven Rostedt (Red Hat) __attribute__((section("__trace_printk_fmt"))) = \ 65909ae7234SSteven Rostedt (Red Hat) __builtin_constant_p(str) ? str : NULL; \ 66009ae7234SSteven Rostedt (Red Hat) \ 66109ae7234SSteven Rostedt (Red Hat) if (__builtin_constant_p(str)) \ 66209ae7234SSteven Rostedt (Red Hat) __trace_bputs(_THIS_IP_, trace_printk_fmt); \ 66309ae7234SSteven Rostedt (Red Hat) else \ 66409ae7234SSteven Rostedt (Red Hat) __trace_puts(_THIS_IP_, str, strlen(str)); \ 66509ae7234SSteven Rostedt (Red Hat) }) 666bcf312cfSSteven Rostedt extern int __trace_bputs(unsigned long ip, const char *str); 667bcf312cfSSteven Rostedt extern int __trace_puts(unsigned long ip, const char *str, int size); 66809ae7234SSteven Rostedt (Red Hat) 669c142be8eSSteven Rostedt (Red Hat) extern void trace_dump_stack(int skip); 67003889384SSteven Rostedt 67148ead020SFrederic Weisbecker /* 67248ead020SFrederic Weisbecker * The double __builtin_constant_p is because gcc will give us an error 67348ead020SFrederic Weisbecker * if we try to allocate the static variable to fmt if it is not a 67448ead020SFrederic Weisbecker * constant. Even with the outer if statement. 67548ead020SFrederic Weisbecker */ 676769b0441SFrederic Weisbecker #define ftrace_vprintk(fmt, vargs) \ 677769b0441SFrederic Weisbecker do { \ 67848ead020SFrederic Weisbecker if (__builtin_constant_p(fmt)) { \ 679769b0441SFrederic Weisbecker static const char *trace_printk_fmt \ 68048ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 68148ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 6827bffc23eSIngo Molnar \ 68348ead020SFrederic Weisbecker __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \ 68448ead020SFrederic Weisbecker } else \ 68548ead020SFrederic Weisbecker __ftrace_vprintk(_THIS_IP_, fmt, vargs); \ 686769b0441SFrederic Weisbecker } while (0) 687769b0441SFrederic Weisbecker 6888db14860SNicolas Iooss extern __printf(2, 0) int 68948ead020SFrederic Weisbecker __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap); 69048ead020SFrederic Weisbecker 6918db14860SNicolas Iooss extern __printf(2, 0) int 692526211bcSIngo Molnar __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); 693769b0441SFrederic Weisbecker 694cecbca96SFrederic Weisbecker extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode); 695526211bcSIngo Molnar #else 696526211bcSIngo Molnar static inline void tracing_start(void) { } 697526211bcSIngo Molnar static inline void tracing_stop(void) { } 698e67bc51eSDhaval Giani static inline void trace_dump_stack(int skip) { } 69993d68e52SSteven Rostedt 70093d68e52SSteven Rostedt static inline void tracing_on(void) { } 70193d68e52SSteven Rostedt static inline void tracing_off(void) { } 70293d68e52SSteven Rostedt static inline int tracing_is_on(void) { return 0; } 703ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot(void) { } 704ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot_alloc(void) { } 70593d68e52SSteven Rostedt 70660efc15aSMichal Hocko static inline __printf(1, 2) 70760efc15aSMichal Hocko int trace_printk(const char *fmt, ...) 708526211bcSIngo Molnar { 709526211bcSIngo Molnar return 0; 710526211bcSIngo Molnar } 7118db14860SNicolas Iooss static __printf(1, 0) inline int 712526211bcSIngo Molnar ftrace_vprintk(const char *fmt, va_list ap) 713526211bcSIngo Molnar { 714526211bcSIngo Molnar return 0; 715526211bcSIngo Molnar } 716cecbca96SFrederic Weisbecker static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } 717769b0441SFrederic Weisbecker #endif /* CONFIG_TRACING */ 718526211bcSIngo Molnar 719526211bcSIngo Molnar /* 720bdf4bbaaSHarvey Harrison * min()/max()/clamp() macros that also do 7211da177e4SLinus Torvalds * strict type-checking.. See the 7221da177e4SLinus Torvalds * "unnecessary" pointer comparison. 7231da177e4SLinus Torvalds */ 7241da177e4SLinus Torvalds #define min(x, y) ({ \ 725bdf4bbaaSHarvey Harrison typeof(x) _min1 = (x); \ 726bdf4bbaaSHarvey Harrison typeof(y) _min2 = (y); \ 727bdf4bbaaSHarvey Harrison (void) (&_min1 == &_min2); \ 728bdf4bbaaSHarvey Harrison _min1 < _min2 ? _min1 : _min2; }) 7291da177e4SLinus Torvalds 7301da177e4SLinus Torvalds #define max(x, y) ({ \ 731bdf4bbaaSHarvey Harrison typeof(x) _max1 = (x); \ 732bdf4bbaaSHarvey Harrison typeof(y) _max2 = (y); \ 733bdf4bbaaSHarvey Harrison (void) (&_max1 == &_max2); \ 734bdf4bbaaSHarvey Harrison _max1 > _max2 ? _max1 : _max2; }) 735bdf4bbaaSHarvey Harrison 7362e1d06e1SMichal Nazarewicz #define min3(x, y, z) min((typeof(x))min(x, y), z) 7372e1d06e1SMichal Nazarewicz #define max3(x, y, z) max((typeof(x))max(x, y), z) 738f27c85c5SHagen Paul Pfeifer 739bdf4bbaaSHarvey Harrison /** 740c8bf1336SMartin K. Petersen * min_not_zero - return the minimum that is _not_ zero, unless both are zero 741c8bf1336SMartin K. Petersen * @x: value1 742c8bf1336SMartin K. Petersen * @y: value2 743c8bf1336SMartin K. Petersen */ 744c8bf1336SMartin K. Petersen #define min_not_zero(x, y) ({ \ 745c8bf1336SMartin K. Petersen typeof(x) __x = (x); \ 746c8bf1336SMartin K. Petersen typeof(y) __y = (y); \ 747c8bf1336SMartin K. Petersen __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); }) 748c8bf1336SMartin K. Petersen 749c8bf1336SMartin K. Petersen /** 750bdf4bbaaSHarvey Harrison * clamp - return a value clamped to a given range with strict typechecking 751bdf4bbaaSHarvey Harrison * @val: current value 7522e1d06e1SMichal Nazarewicz * @lo: lowest allowable value 7532e1d06e1SMichal Nazarewicz * @hi: highest allowable value 754bdf4bbaaSHarvey Harrison * 755c185b07fSMichal Nazarewicz * This macro does strict typechecking of lo/hi to make sure they are of the 756bdf4bbaaSHarvey Harrison * same type as val. See the unnecessary pointer comparisons. 757bdf4bbaaSHarvey Harrison */ 7582e1d06e1SMichal Nazarewicz #define clamp(val, lo, hi) min((typeof(val))max(val, lo), hi) 7591da177e4SLinus Torvalds 7601da177e4SLinus Torvalds /* 7611da177e4SLinus Torvalds * ..and if you can't take the strict 7621da177e4SLinus Torvalds * types, you can specify one yourself. 7631da177e4SLinus Torvalds * 764bdf4bbaaSHarvey Harrison * Or not use min/max/clamp at all, of course. 7651da177e4SLinus Torvalds */ 766bdf4bbaaSHarvey Harrison #define min_t(type, x, y) ({ \ 767bdf4bbaaSHarvey Harrison type __min1 = (x); \ 768bdf4bbaaSHarvey Harrison type __min2 = (y); \ 769bdf4bbaaSHarvey Harrison __min1 < __min2 ? __min1: __min2; }) 7701da177e4SLinus Torvalds 771bdf4bbaaSHarvey Harrison #define max_t(type, x, y) ({ \ 772bdf4bbaaSHarvey Harrison type __max1 = (x); \ 773bdf4bbaaSHarvey Harrison type __max2 = (y); \ 774bdf4bbaaSHarvey Harrison __max1 > __max2 ? __max1: __max2; }) 775bdf4bbaaSHarvey Harrison 776bdf4bbaaSHarvey Harrison /** 777bdf4bbaaSHarvey Harrison * clamp_t - return a value clamped to a given range using a given type 778bdf4bbaaSHarvey Harrison * @type: the type of variable to use 779bdf4bbaaSHarvey Harrison * @val: current value 780c185b07fSMichal Nazarewicz * @lo: minimum allowable value 781c185b07fSMichal Nazarewicz * @hi: maximum allowable value 782bdf4bbaaSHarvey Harrison * 783bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of type 784bdf4bbaaSHarvey Harrison * 'type' to make all the comparisons. 785bdf4bbaaSHarvey Harrison */ 786c185b07fSMichal Nazarewicz #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi) 787bdf4bbaaSHarvey Harrison 788bdf4bbaaSHarvey Harrison /** 789bdf4bbaaSHarvey Harrison * clamp_val - return a value clamped to a given range using val's type 790bdf4bbaaSHarvey Harrison * @val: current value 791c185b07fSMichal Nazarewicz * @lo: minimum allowable value 792c185b07fSMichal Nazarewicz * @hi: maximum allowable value 793bdf4bbaaSHarvey Harrison * 794bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of whatever 795bdf4bbaaSHarvey Harrison * type the input argument 'val' is. This is useful when val is an unsigned 796bdf4bbaaSHarvey Harrison * type and min and max are literals that will otherwise be assigned a signed 797bdf4bbaaSHarvey Harrison * integer type. 798bdf4bbaaSHarvey Harrison */ 799c185b07fSMichal Nazarewicz #define clamp_val(val, lo, hi) clamp_t(typeof(val), val, lo, hi) 8001da177e4SLinus Torvalds 80191f68b73SWu Fengguang 80291f68b73SWu Fengguang /* 80391f68b73SWu Fengguang * swap - swap value of @a and @b 80491f68b73SWu Fengguang */ 805ac7b9004SPeter Zijlstra #define swap(a, b) \ 806ac7b9004SPeter Zijlstra do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) 80791f68b73SWu Fengguang 8081da177e4SLinus Torvalds /** 8091da177e4SLinus Torvalds * container_of - cast a member of a structure out to the containing structure 8101da177e4SLinus Torvalds * @ptr: the pointer to the member. 8111da177e4SLinus Torvalds * @type: the type of the container struct this is embedded in. 8121da177e4SLinus Torvalds * @member: the name of the member within the struct. 8131da177e4SLinus Torvalds * 8141da177e4SLinus Torvalds */ 8151da177e4SLinus Torvalds #define container_of(ptr, type, member) ({ \ 8161da177e4SLinus Torvalds const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 8171da177e4SLinus Torvalds (type *)( (char *)__mptr - offsetof(type,member) );}) 8181da177e4SLinus Torvalds 819b9d4f426SArnaud Lacombe /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ 820b9d4f426SArnaud Lacombe #ifdef CONFIG_FTRACE_MCOUNT_RECORD 821b9d4f426SArnaud Lacombe # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD 822b9d4f426SArnaud Lacombe #endif 8239d00f92fSWANG Cong 82458f86cc8SRusty Russell /* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */ 82558f86cc8SRusty Russell #define VERIFY_OCTAL_PERMISSIONS(perms) \ 82658f86cc8SRusty Russell (BUILD_BUG_ON_ZERO((perms) < 0) + \ 82758f86cc8SRusty Russell BUILD_BUG_ON_ZERO((perms) > 0777) + \ 82828b8d0c8SGobinda Charan Maji /* USER_READABLE >= GROUP_READABLE >= OTHER_READABLE */ \ 82928b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 6) & 4) < (((perms) >> 3) & 4)) + \ 83028b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 3) & 4) < ((perms) & 4)) + \ 83128b8d0c8SGobinda Charan Maji /* USER_WRITABLE >= GROUP_WRITABLE */ \ 83228b8d0c8SGobinda Charan Maji BUILD_BUG_ON_ZERO((((perms) >> 6) & 2) < (((perms) >> 3) & 2)) + \ 83328b8d0c8SGobinda Charan Maji /* OTHER_WRITABLE? Generally considered a bad idea. */ \ 83437549e94SRusty Russell BUILD_BUG_ON_ZERO((perms) & 2) + \ 83558f86cc8SRusty Russell (perms)) 8361da177e4SLinus Torvalds #endif 837