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 ) 1061da177e4SLinus Torvalds 1079993bc63SSalman Qazi /* 1089993bc63SSalman Qazi * Multiplies an integer by a fraction, while avoiding unnecessary 1099993bc63SSalman Qazi * overflow or loss of precision. 1109993bc63SSalman Qazi */ 1119993bc63SSalman Qazi #define mult_frac(x, numer, denom)( \ 1129993bc63SSalman Qazi { \ 1139993bc63SSalman Qazi typeof(x) quot = (x) / (denom); \ 1149993bc63SSalman Qazi typeof(x) rem = (x) % (denom); \ 1159993bc63SSalman Qazi (quot * (numer)) + ((rem * (numer)) / (denom)); \ 1169993bc63SSalman Qazi } \ 1179993bc63SSalman Qazi ) 1189993bc63SSalman Qazi 1199993bc63SSalman Qazi 120ca31e146SEduard - Gabriel Munteanu #define _RET_IP_ (unsigned long)__builtin_return_address(0) 121ca31e146SEduard - Gabriel Munteanu #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) 122ca31e146SEduard - Gabriel Munteanu 12390c699a9SBartlomiej Zolnierkiewicz #ifdef CONFIG_LBDAF 1242da96acdSJens Axboe # include <asm/div64.h> 1252da96acdSJens Axboe # define sector_div(a, b) do_div(a, b) 1262da96acdSJens Axboe #else 1272da96acdSJens Axboe # define sector_div(n, b)( \ 1282da96acdSJens Axboe { \ 1292da96acdSJens Axboe int _res; \ 1302da96acdSJens Axboe _res = (n) % (b); \ 1312da96acdSJens Axboe (n) /= (b); \ 1322da96acdSJens Axboe _res; \ 1332da96acdSJens Axboe } \ 1342da96acdSJens Axboe ) 1352da96acdSJens Axboe #endif 1362da96acdSJens Axboe 137218e180eSAndrew Morton /** 138218e180eSAndrew Morton * upper_32_bits - return bits 32-63 of a number 139218e180eSAndrew Morton * @n: the number we're accessing 140218e180eSAndrew Morton * 141218e180eSAndrew Morton * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress 142218e180eSAndrew Morton * the "right shift count >= width of type" warning when that quantity is 143218e180eSAndrew Morton * 32-bits. 144218e180eSAndrew Morton */ 145218e180eSAndrew Morton #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) 146218e180eSAndrew Morton 147204b885eSJoerg Roedel /** 148204b885eSJoerg Roedel * lower_32_bits - return bits 0-31 of a number 149204b885eSJoerg Roedel * @n: the number we're accessing 150204b885eSJoerg Roedel */ 151204b885eSJoerg Roedel #define lower_32_bits(n) ((u32)(n)) 152204b885eSJoerg Roedel 1531da177e4SLinus Torvalds struct completion; 154df2e71fbS[email protected] struct pt_regs; 155df2e71fbS[email protected] struct user; 1561da177e4SLinus Torvalds 157070cb065SUwe Kleine-König #ifdef CONFIG_PREEMPT_VOLUNTARY 158070cb065SUwe Kleine-König extern int _cond_resched(void); 159070cb065SUwe Kleine-König # define might_resched() _cond_resched() 160070cb065SUwe Kleine-König #else 161070cb065SUwe Kleine-König # define might_resched() do { } while (0) 162070cb065SUwe Kleine-König #endif 163070cb065SUwe Kleine-König 164d902db1eSFrederic Weisbecker #ifdef CONFIG_DEBUG_ATOMIC_SLEEP 165d894837fSSimon Kagstrom void __might_sleep(const char *file, int line, int preempt_offset); 1661da177e4SLinus Torvalds /** 1671da177e4SLinus Torvalds * might_sleep - annotation for functions that can sleep 1681da177e4SLinus Torvalds * 1691da177e4SLinus Torvalds * this macro will print a stack trace if it is executed in an atomic 1701da177e4SLinus Torvalds * context (spinlock, irq-handler, ...). 1711da177e4SLinus Torvalds * 1721da177e4SLinus Torvalds * This is a useful debugging help to be able to catch problems early and not 173e20ec991SJim Cromie * be bitten later when the calling function happens to sleep when it is not 1741da177e4SLinus Torvalds * supposed to. 1751da177e4SLinus Torvalds */ 176f8cbd99bSIngo Molnar # define might_sleep() \ 177e4aafea2SFrederic Weisbecker do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0) 178f8cbd99bSIngo Molnar #else 179d894837fSSimon Kagstrom static inline void __might_sleep(const char *file, int line, 180d894837fSSimon Kagstrom int preempt_offset) { } 181f8cbd99bSIngo Molnar # define might_sleep() do { might_resched(); } while (0) 182f8cbd99bSIngo Molnar #endif 183f8cbd99bSIngo Molnar 184368a5fa1SHua Zhong #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) 185f8cbd99bSIngo Molnar 18671a90484SAndrew Morton /* 18771a90484SAndrew Morton * abs() handles unsigned and signed longs, ints, shorts and chars. For all 18871a90484SAndrew Morton * input types abs() returns a signed long. 18971a90484SAndrew Morton * abs() should not be used for 64-bit types (s64, u64, long long) - use abs64() 19071a90484SAndrew Morton * for those. 19171a90484SAndrew Morton */ 1921da177e4SLinus Torvalds #define abs(x) ({ \ 19371a90484SAndrew Morton long ret; \ 19471a90484SAndrew Morton if (sizeof(x) == sizeof(long)) { \ 195a49c59c0SRolf Eike Beer long __x = (x); \ 19671a90484SAndrew Morton ret = (__x < 0) ? -__x : __x; \ 19771a90484SAndrew Morton } else { \ 19871a90484SAndrew Morton int __x = (x); \ 19971a90484SAndrew Morton ret = (__x < 0) ? -__x : __x; \ 20071a90484SAndrew Morton } \ 20171a90484SAndrew Morton ret; \ 2021da177e4SLinus Torvalds }) 2031da177e4SLinus Torvalds 204658716d1SBrian Behlendorf #define abs64(x) ({ \ 205658716d1SBrian Behlendorf s64 __x = (x); \ 206658716d1SBrian Behlendorf (__x < 0) ? -__x : __x; \ 207658716d1SBrian Behlendorf }) 208658716d1SBrian Behlendorf 20989770b0aSDaniel Borkmann /** 21089770b0aSDaniel Borkmann * reciprocal_scale - "scale" a value into range [0, ep_ro) 21189770b0aSDaniel Borkmann * @val: value 21289770b0aSDaniel Borkmann * @ep_ro: right open interval endpoint 21389770b0aSDaniel Borkmann * 21489770b0aSDaniel Borkmann * Perform a "reciprocal multiplication" in order to "scale" a value into 21589770b0aSDaniel Borkmann * range [0, ep_ro), where the upper interval endpoint is right-open. 21689770b0aSDaniel Borkmann * This is useful, e.g. for accessing a index of an array containing 21789770b0aSDaniel Borkmann * ep_ro elements, for example. Think of it as sort of modulus, only that 21889770b0aSDaniel Borkmann * the result isn't that of modulo. ;) Note that if initial input is a 21989770b0aSDaniel Borkmann * small value, then result will return 0. 22089770b0aSDaniel Borkmann * 22189770b0aSDaniel Borkmann * Return: a result based on val in interval [0, ep_ro). 22289770b0aSDaniel Borkmann */ 22389770b0aSDaniel Borkmann static inline u32 reciprocal_scale(u32 val, u32 ep_ro) 22489770b0aSDaniel Borkmann { 22589770b0aSDaniel Borkmann return (u32)(((u64) val * ep_ro) >> 32); 22689770b0aSDaniel Borkmann } 22789770b0aSDaniel Borkmann 228386e7906SAxel Lin #if defined(CONFIG_MMU) && \ 229386e7906SAxel Lin (defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)) 2303ee1afa3SNick Piggin void might_fault(void); 2313ee1afa3SNick Piggin #else 232662bbcb2SMichael S. Tsirkin static inline void might_fault(void) { } 2333ee1afa3SNick Piggin #endif 2343ee1afa3SNick Piggin 235e041c683SAlan Stern extern struct atomic_notifier_head panic_notifier_list; 236c7ff0d9cSTAMUKI Shoichi extern long (*panic_blink)(int state); 2379402c95fSJoe Perches __printf(1, 2) 2384da47859SJoe Perches void panic(const char *fmt, ...) 239ff2d8b19SJoe Perches __noreturn __cold; 240dd287796SAndrew Morton extern void oops_enter(void); 241dd287796SAndrew Morton extern void oops_exit(void); 242863a6049SAnton Blanchard void print_oops_end_marker(void); 243dd287796SAndrew Morton extern int oops_may_print(void); 2449402c95fSJoe Perches void do_exit(long error_code) 245ff2d8b19SJoe Perches __noreturn; 2469402c95fSJoe Perches void complete_and_exit(struct completion *, long) 247ff2d8b19SJoe Perches __noreturn; 24833ee3b2eSAlexey Dobriyan 24933ee3b2eSAlexey Dobriyan /* Internal, do not use. */ 25033ee3b2eSAlexey Dobriyan int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res); 25133ee3b2eSAlexey Dobriyan int __must_check _kstrtol(const char *s, unsigned int base, long *res); 25233ee3b2eSAlexey Dobriyan 25333ee3b2eSAlexey Dobriyan int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res); 25433ee3b2eSAlexey Dobriyan int __must_check kstrtoll(const char *s, unsigned int base, long long *res); 2554c925d60SEldad Zack 2564c925d60SEldad Zack /** 2574c925d60SEldad Zack * kstrtoul - convert a string to an unsigned long 2584c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 2594c925d60SEldad Zack * include a single newline before its terminating null. The first character 2604c925d60SEldad Zack * may also be a plus sign, but not a minus sign. 2614c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 2624c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 2634c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 2644c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 2654c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 2664c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 2674c925d60SEldad Zack * 2684c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 2694c925d60SEldad Zack * Used as a replacement for the obsolete simple_strtoull. Return code must 2704c925d60SEldad Zack * be checked. 2714c925d60SEldad Zack */ 27233ee3b2eSAlexey Dobriyan static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) 27333ee3b2eSAlexey Dobriyan { 27433ee3b2eSAlexey Dobriyan /* 27533ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 27633ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(unsigned long, unsigned long long) = 0. 27733ee3b2eSAlexey Dobriyan */ 27833ee3b2eSAlexey Dobriyan if (sizeof(unsigned long) == sizeof(unsigned long long) && 27933ee3b2eSAlexey Dobriyan __alignof__(unsigned long) == __alignof__(unsigned long long)) 28033ee3b2eSAlexey Dobriyan return kstrtoull(s, base, (unsigned long long *)res); 28133ee3b2eSAlexey Dobriyan else 28233ee3b2eSAlexey Dobriyan return _kstrtoul(s, base, res); 28333ee3b2eSAlexey Dobriyan } 28433ee3b2eSAlexey Dobriyan 2854c925d60SEldad Zack /** 2864c925d60SEldad Zack * kstrtol - convert a string to a long 2874c925d60SEldad Zack * @s: The start of the string. The string must be null-terminated, and may also 2884c925d60SEldad Zack * include a single newline before its terminating null. The first character 2894c925d60SEldad Zack * may also be a plus sign or a minus sign. 2904c925d60SEldad Zack * @base: The number base to use. The maximum supported base is 16. If base is 2914c925d60SEldad Zack * given as 0, then the base of the string is automatically detected with the 2924c925d60SEldad Zack * conventional semantics - If it begins with 0x the number will be parsed as a 2934c925d60SEldad Zack * hexadecimal (case insensitive), if it otherwise begins with 0, it will be 2944c925d60SEldad Zack * parsed as an octal number. Otherwise it will be parsed as a decimal. 2954c925d60SEldad Zack * @res: Where to write the result of the conversion on success. 2964c925d60SEldad Zack * 2974c925d60SEldad Zack * Returns 0 on success, -ERANGE on overflow and -EINVAL on parsing error. 2984c925d60SEldad Zack * Used as a replacement for the obsolete simple_strtoull. Return code must 2994c925d60SEldad Zack * be checked. 3004c925d60SEldad Zack */ 30133ee3b2eSAlexey Dobriyan static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) 30233ee3b2eSAlexey Dobriyan { 30333ee3b2eSAlexey Dobriyan /* 30433ee3b2eSAlexey Dobriyan * We want to shortcut function call, but 30533ee3b2eSAlexey Dobriyan * __builtin_types_compatible_p(long, long long) = 0. 30633ee3b2eSAlexey Dobriyan */ 30733ee3b2eSAlexey Dobriyan if (sizeof(long) == sizeof(long long) && 30833ee3b2eSAlexey Dobriyan __alignof__(long) == __alignof__(long long)) 30933ee3b2eSAlexey Dobriyan return kstrtoll(s, base, (long long *)res); 31033ee3b2eSAlexey Dobriyan else 31133ee3b2eSAlexey Dobriyan return _kstrtol(s, base, res); 31233ee3b2eSAlexey Dobriyan } 31333ee3b2eSAlexey Dobriyan 31433ee3b2eSAlexey Dobriyan int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res); 31533ee3b2eSAlexey Dobriyan int __must_check kstrtoint(const char *s, unsigned int base, int *res); 31633ee3b2eSAlexey Dobriyan 31733ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) 31833ee3b2eSAlexey Dobriyan { 31933ee3b2eSAlexey Dobriyan return kstrtoull(s, base, res); 32033ee3b2eSAlexey Dobriyan } 32133ee3b2eSAlexey Dobriyan 32233ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) 32333ee3b2eSAlexey Dobriyan { 32433ee3b2eSAlexey Dobriyan return kstrtoll(s, base, res); 32533ee3b2eSAlexey Dobriyan } 32633ee3b2eSAlexey Dobriyan 32733ee3b2eSAlexey Dobriyan static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) 32833ee3b2eSAlexey Dobriyan { 32933ee3b2eSAlexey Dobriyan return kstrtouint(s, base, res); 33033ee3b2eSAlexey Dobriyan } 33133ee3b2eSAlexey Dobriyan 33233ee3b2eSAlexey Dobriyan static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) 33333ee3b2eSAlexey Dobriyan { 33433ee3b2eSAlexey Dobriyan return kstrtoint(s, base, res); 33533ee3b2eSAlexey Dobriyan } 33633ee3b2eSAlexey Dobriyan 33733ee3b2eSAlexey Dobriyan int __must_check kstrtou16(const char *s, unsigned int base, u16 *res); 33833ee3b2eSAlexey Dobriyan int __must_check kstrtos16(const char *s, unsigned int base, s16 *res); 33933ee3b2eSAlexey Dobriyan int __must_check kstrtou8(const char *s, unsigned int base, u8 *res); 34033ee3b2eSAlexey Dobriyan int __must_check kstrtos8(const char *s, unsigned int base, s8 *res); 34133ee3b2eSAlexey Dobriyan 342c196e32aSAlexey Dobriyan int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res); 343c196e32aSAlexey Dobriyan int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res); 344c196e32aSAlexey Dobriyan int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res); 345c196e32aSAlexey Dobriyan int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res); 346c196e32aSAlexey Dobriyan int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res); 347c196e32aSAlexey Dobriyan int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res); 348c196e32aSAlexey Dobriyan int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res); 349c196e32aSAlexey Dobriyan int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res); 350c196e32aSAlexey Dobriyan int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res); 351c196e32aSAlexey Dobriyan int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res); 352c196e32aSAlexey Dobriyan 353c196e32aSAlexey Dobriyan static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res) 354c196e32aSAlexey Dobriyan { 355c196e32aSAlexey Dobriyan return kstrtoull_from_user(s, count, base, res); 356c196e32aSAlexey Dobriyan } 357c196e32aSAlexey Dobriyan 358c196e32aSAlexey Dobriyan static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) 359c196e32aSAlexey Dobriyan { 360c196e32aSAlexey Dobriyan return kstrtoll_from_user(s, count, base, res); 361c196e32aSAlexey Dobriyan } 362c196e32aSAlexey Dobriyan 363c196e32aSAlexey Dobriyan static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res) 364c196e32aSAlexey Dobriyan { 365c196e32aSAlexey Dobriyan return kstrtouint_from_user(s, count, base, res); 366c196e32aSAlexey Dobriyan } 367c196e32aSAlexey Dobriyan 368c196e32aSAlexey Dobriyan static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res) 369c196e32aSAlexey Dobriyan { 370c196e32aSAlexey Dobriyan return kstrtoint_from_user(s, count, base, res); 371c196e32aSAlexey Dobriyan } 372c196e32aSAlexey Dobriyan 37367d0a075SJoe Perches /* Obsolete, do not use. Use kstrto<foo> instead */ 37467d0a075SJoe Perches 3751da177e4SLinus Torvalds extern unsigned long simple_strtoul(const char *,char **,unsigned int); 3761da177e4SLinus Torvalds extern long simple_strtol(const char *,char **,unsigned int); 3771da177e4SLinus Torvalds extern unsigned long long simple_strtoull(const char *,char **,unsigned int); 3781da177e4SLinus Torvalds extern long long simple_strtoll(const char *,char **,unsigned int); 37933ee3b2eSAlexey Dobriyan #define strict_strtoul kstrtoul 38033ee3b2eSAlexey Dobriyan #define strict_strtol kstrtol 38133ee3b2eSAlexey Dobriyan #define strict_strtoull kstrtoull 38233ee3b2eSAlexey Dobriyan #define strict_strtoll kstrtoll 38333ee3b2eSAlexey Dobriyan 3841ac101a5SKAMEZAWA Hiroyuki extern int num_to_str(char *buf, int size, unsigned long long num); 3851ac101a5SKAMEZAWA Hiroyuki 38667d0a075SJoe Perches /* lib/printf utilities */ 38767d0a075SJoe Perches 388b9075fa9SJoe Perches extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...); 389b9075fa9SJoe Perches extern __printf(2, 0) int vsprintf(char *buf, const char *, va_list); 390b9075fa9SJoe Perches extern __printf(3, 4) 391b9075fa9SJoe Perches int snprintf(char *buf, size_t size, const char *fmt, ...); 392b9075fa9SJoe Perches extern __printf(3, 0) 393b9075fa9SJoe Perches int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 394b9075fa9SJoe Perches extern __printf(3, 4) 395b9075fa9SJoe Perches int scnprintf(char *buf, size_t size, const char *fmt, ...); 396b9075fa9SJoe Perches extern __printf(3, 0) 397b9075fa9SJoe Perches int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 398b9075fa9SJoe Perches extern __printf(2, 3) 399b9075fa9SJoe Perches char *kasprintf(gfp_t gfp, const char *fmt, ...); 40011443ec7SJeremy Fitzhardinge extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 4011da177e4SLinus Torvalds 4026061d949SJoe Perches extern __scanf(2, 3) 4036061d949SJoe Perches int sscanf(const char *, const char *, ...); 4046061d949SJoe Perches extern __scanf(2, 0) 4056061d949SJoe Perches int vsscanf(const char *, const char *, va_list); 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds extern int get_option(char **str, int *pint); 4081da177e4SLinus Torvalds extern char *get_options(const char *str, int nints, int *ints); 409d974ae37SJeremy Fitzhardinge extern unsigned long long memparse(const char *ptr, char **retptr); 4101da177e4SLinus Torvalds 4115e376613STrent Piepho extern int core_kernel_text(unsigned long addr); 412cdbe61bfSSteven Rostedt extern int core_kernel_data(unsigned long addr); 4131da177e4SLinus Torvalds extern int __kernel_text_address(unsigned long addr); 4141da177e4SLinus Torvalds extern int kernel_text_address(unsigned long addr); 415ab7476cfSArjan van de Ven extern int func_ptr_is_kernel_text(void *ptr); 416ab7476cfSArjan van de Ven 41704a2e6a5SEric W. Biederman struct pid; 41804a2e6a5SEric W. Biederman extern struct pid *session_of_pgrp(struct pid *pgrp); 4191da177e4SLinus Torvalds 4201da177e4SLinus Torvalds unsigned long int_sqrt(unsigned long); 4211da177e4SLinus Torvalds 4221da177e4SLinus Torvalds extern void bust_spinlocks(int yes); 4231da177e4SLinus Torvalds extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ 424aa727107SAdrian Bunk extern int panic_timeout; 4251da177e4SLinus Torvalds extern int panic_on_oops; 4268da5addaSDon Zickus extern int panic_on_unrecovered_nmi; 4275211a242SKurt Garloff extern int panic_on_io_nmi; 42855af7796SMitsuo Hayasaka extern int sysctl_panic_on_stackoverflow; 4295800dc3cSJason Baron /* 4305800dc3cSJason Baron * Only to be used by arch init code. If the user over-wrote the default 4315800dc3cSJason Baron * CONFIG_PANIC_TIMEOUT, honor it. 4325800dc3cSJason Baron */ 4335800dc3cSJason Baron static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout) 4345800dc3cSJason Baron { 4355800dc3cSJason Baron if (panic_timeout == arch_default_timeout) 4365800dc3cSJason Baron panic_timeout = timeout; 4375800dc3cSJason Baron } 4381da177e4SLinus Torvalds extern const char *print_tainted(void); 439373d4d09SRusty Russell enum lockdep_ok { 440373d4d09SRusty Russell LOCKDEP_STILL_OK, 441373d4d09SRusty Russell LOCKDEP_NOW_UNRELIABLE 442373d4d09SRusty Russell }; 443373d4d09SRusty Russell extern void add_taint(unsigned flag, enum lockdep_ok); 44425ddbb18SAndi Kleen extern int test_taint(unsigned flag); 44525ddbb18SAndi Kleen extern unsigned long get_taint(void); 446b920de1bSDavid Howells extern int root_mountflags; 4471da177e4SLinus Torvalds 4482ce802f6STejun Heo extern bool early_boot_irqs_disabled; 4492ce802f6STejun Heo 4501da177e4SLinus Torvalds /* Values used for system_state */ 4511da177e4SLinus Torvalds extern enum system_states { 4521da177e4SLinus Torvalds SYSTEM_BOOTING, 4531da177e4SLinus Torvalds SYSTEM_RUNNING, 4541da177e4SLinus Torvalds SYSTEM_HALT, 4551da177e4SLinus Torvalds SYSTEM_POWER_OFF, 4561da177e4SLinus Torvalds SYSTEM_RESTART, 4571da177e4SLinus Torvalds } system_state; 4581da177e4SLinus Torvalds 45925ddbb18SAndi Kleen #define TAINT_PROPRIETARY_MODULE 0 46025ddbb18SAndi Kleen #define TAINT_FORCED_MODULE 1 4618c90487cSDave Jones #define TAINT_CPU_OUT_OF_SPEC 2 46225ddbb18SAndi Kleen #define TAINT_FORCED_RMMOD 3 46325ddbb18SAndi Kleen #define TAINT_MACHINE_CHECK 4 46425ddbb18SAndi Kleen #define TAINT_BAD_PAGE 5 46525ddbb18SAndi Kleen #define TAINT_USER 6 46625ddbb18SAndi Kleen #define TAINT_DIE 7 46725ddbb18SAndi Kleen #define TAINT_OVERRIDDEN_ACPI_TABLE 8 46825ddbb18SAndi Kleen #define TAINT_WARN 9 46926e9a397SLinus Torvalds #define TAINT_CRAP 10 47092946bc7SBen Hutchings #define TAINT_FIRMWARE_WORKAROUND 11 4712449b8baSBen Hutchings #define TAINT_OOT_MODULE 12 47266cc69e3SMathieu Desnoyers #define TAINT_UNSIGNED_MODULE 13 4731da177e4SLinus Torvalds 4743fc95772SHarvey Harrison extern const char hex_asc[]; 4753fc95772SHarvey Harrison #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] 4763fc95772SHarvey Harrison #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] 4773fc95772SHarvey Harrison 47855036ba7SAndy Shevchenko static inline char *hex_byte_pack(char *buf, u8 byte) 4793fc95772SHarvey Harrison { 4803fc95772SHarvey Harrison *buf++ = hex_asc_hi(byte); 4813fc95772SHarvey Harrison *buf++ = hex_asc_lo(byte); 4823fc95772SHarvey Harrison return buf; 4833fc95772SHarvey Harrison } 48499eaf3c4SRandy Dunlap 485c26d436cSAndre Naujoks extern const char hex_asc_upper[]; 486c26d436cSAndre Naujoks #define hex_asc_upper_lo(x) hex_asc_upper[((x) & 0x0f)] 487c26d436cSAndre Naujoks #define hex_asc_upper_hi(x) hex_asc_upper[((x) & 0xf0) >> 4] 488c26d436cSAndre Naujoks 489c26d436cSAndre Naujoks static inline char *hex_byte_pack_upper(char *buf, u8 byte) 490c26d436cSAndre Naujoks { 491c26d436cSAndre Naujoks *buf++ = hex_asc_upper_hi(byte); 492c26d436cSAndre Naujoks *buf++ = hex_asc_upper_lo(byte); 493c26d436cSAndre Naujoks return buf; 494c26d436cSAndre Naujoks } 495c26d436cSAndre Naujoks 49655036ba7SAndy Shevchenko static inline char * __deprecated pack_hex_byte(char *buf, u8 byte) 49755036ba7SAndy Shevchenko { 49855036ba7SAndy Shevchenko return hex_byte_pack(buf, byte); 49955036ba7SAndy Shevchenko } 50055036ba7SAndy Shevchenko 50190378889SAndy Shevchenko extern int hex_to_bin(char ch); 502b7804983SMimi Zohar extern int __must_check hex2bin(u8 *dst, const char *src, size_t count); 503*53d91c5cSDavid Howells extern char *bin2hex(char *dst, const void *src, size_t count); 50490378889SAndy Shevchenko 5054cd5773aSAndy Shevchenko int mac_pton(const char *s, u8 *mac); 5064cd5773aSAndy Shevchenko 5078a64f336SJoe Perches /* 508526211bcSIngo Molnar * General tracing related utility functions - trace_printk(), 5092002c258SSteven Rostedt * tracing_on/tracing_off and tracing_start()/tracing_stop 5102002c258SSteven Rostedt * 5112002c258SSteven Rostedt * Use tracing_on/tracing_off when you want to quickly turn on or off 5122002c258SSteven Rostedt * tracing. It simply enables or disables the recording of the trace events. 513156f5a78SGeunSik Lim * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on 5142002c258SSteven Rostedt * file, which gives a means for the kernel and userspace to interact. 5152002c258SSteven Rostedt * Place a tracing_off() in the kernel where you want tracing to end. 5162002c258SSteven Rostedt * From user space, examine the trace, and then echo 1 > tracing_on 5172002c258SSteven Rostedt * to continue tracing. 5182002c258SSteven Rostedt * 5192002c258SSteven Rostedt * tracing_stop/tracing_start has slightly more overhead. It is used 5202002c258SSteven Rostedt * by things like suspend to ram where disabling the recording of the 5212002c258SSteven Rostedt * trace is not enough, but tracing must actually stop because things 5222002c258SSteven Rostedt * like calling smp_processor_id() may crash the system. 5232002c258SSteven Rostedt * 5242002c258SSteven Rostedt * Most likely, you want to use tracing_on/tracing_off. 525526211bcSIngo Molnar */ 5262002c258SSteven Rostedt #ifdef CONFIG_RING_BUFFER 5272002c258SSteven Rostedt /* trace_off_permanent stops recording with no way to bring it back */ 5282002c258SSteven Rostedt void tracing_off_permanent(void); 5292002c258SSteven Rostedt #else 5302002c258SSteven Rostedt static inline void tracing_off_permanent(void) { } 5312002c258SSteven Rostedt #endif 532cecbca96SFrederic Weisbecker 533cecbca96SFrederic Weisbecker enum ftrace_dump_mode { 534cecbca96SFrederic Weisbecker DUMP_NONE, 535cecbca96SFrederic Weisbecker DUMP_ALL, 536cecbca96SFrederic Weisbecker DUMP_ORIG, 537cecbca96SFrederic Weisbecker }; 538cecbca96SFrederic Weisbecker 539526211bcSIngo Molnar #ifdef CONFIG_TRACING 54093d68e52SSteven Rostedt void tracing_on(void); 54193d68e52SSteven Rostedt void tracing_off(void); 54293d68e52SSteven Rostedt int tracing_is_on(void); 543ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot(void); 544ad909e21SSteven Rostedt (Red Hat) void tracing_snapshot_alloc(void); 54593d68e52SSteven Rostedt 546526211bcSIngo Molnar extern void tracing_start(void); 547526211bcSIngo Molnar extern void tracing_stop(void); 548526211bcSIngo Molnar 549b9075fa9SJoe Perches static inline __printf(1, 2) 550b9075fa9SJoe Perches void ____trace_printk_check_format(const char *fmt, ...) 551769b0441SFrederic Weisbecker { 552769b0441SFrederic Weisbecker } 553769b0441SFrederic Weisbecker #define __trace_printk_check_format(fmt, args...) \ 554769b0441SFrederic Weisbecker do { \ 555769b0441SFrederic Weisbecker if (0) \ 556769b0441SFrederic Weisbecker ____trace_printk_check_format(fmt, ##args); \ 557769b0441SFrederic Weisbecker } while (0) 558769b0441SFrederic Weisbecker 559526211bcSIngo Molnar /** 560526211bcSIngo Molnar * trace_printk - printf formatting in the ftrace buffer 561526211bcSIngo Molnar * @fmt: the printf format for printing 562526211bcSIngo Molnar * 563526211bcSIngo Molnar * Note: __trace_printk is an internal function for trace_printk and 564526211bcSIngo Molnar * the @ip is passed in via the trace_printk macro. 565526211bcSIngo Molnar * 566526211bcSIngo Molnar * This function allows a kernel developer to debug fast path sections 567526211bcSIngo Molnar * that printk is not appropriate for. By scattering in various 568526211bcSIngo Molnar * printk like tracing in the code, a developer can quickly see 569526211bcSIngo Molnar * where problems are occurring. 570526211bcSIngo Molnar * 571526211bcSIngo Molnar * This is intended as a debugging tool for the developer only. 572526211bcSIngo Molnar * Please refrain from leaving trace_printks scattered around in 57309ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 57409ae7234SSteven Rostedt (Red Hat) * allocated when trace_printk() is used) 5759d3c752cSSteven Rostedt (Red Hat) * 5769d3c752cSSteven Rostedt (Red Hat) * A little optization trick is done here. If there's only one 5779d3c752cSSteven Rostedt (Red Hat) * argument, there's no need to scan the string for printf formats. 5789d3c752cSSteven Rostedt (Red Hat) * The trace_puts() will suffice. But how can we take advantage of 5799d3c752cSSteven Rostedt (Red Hat) * using trace_puts() when trace_printk() has only one argument? 5809d3c752cSSteven Rostedt (Red Hat) * By stringifying the args and checking the size we can tell 5819d3c752cSSteven Rostedt (Red Hat) * whether or not there are args. __stringify((__VA_ARGS__)) will 5829d3c752cSSteven Rostedt (Red Hat) * turn into "()\0" with a size of 3 when there are no args, anything 5839d3c752cSSteven Rostedt (Red Hat) * else will be bigger. All we need to do is define a string to this, 5849d3c752cSSteven Rostedt (Red Hat) * and then take its size and compare to 3. If it's bigger, use 5859d3c752cSSteven Rostedt (Red Hat) * do_trace_printk() otherwise, optimize it to trace_puts(). Then just 5869d3c752cSSteven Rostedt (Red Hat) * let gcc optimize the rest. 587526211bcSIngo Molnar */ 588769b0441SFrederic Weisbecker 5899d3c752cSSteven Rostedt (Red Hat) #define trace_printk(fmt, ...) \ 5909d3c752cSSteven Rostedt (Red Hat) do { \ 5919d3c752cSSteven Rostedt (Red Hat) char _______STR[] = __stringify((__VA_ARGS__)); \ 5929d3c752cSSteven Rostedt (Red Hat) if (sizeof(_______STR) > 3) \ 5939d3c752cSSteven Rostedt (Red Hat) do_trace_printk(fmt, ##__VA_ARGS__); \ 5949d3c752cSSteven Rostedt (Red Hat) else \ 5959d3c752cSSteven Rostedt (Red Hat) trace_puts(fmt); \ 5969d3c752cSSteven Rostedt (Red Hat) } while (0) 5979d3c752cSSteven Rostedt (Red Hat) 5989d3c752cSSteven Rostedt (Red Hat) #define do_trace_printk(fmt, args...) \ 599769b0441SFrederic Weisbecker do { \ 60048ead020SFrederic Weisbecker static const char *trace_printk_fmt \ 60148ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 60248ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 60348ead020SFrederic Weisbecker \ 60407d777feSSteven Rostedt __trace_printk_check_format(fmt, ##args); \ 60507d777feSSteven Rostedt \ 60607d777feSSteven Rostedt if (__builtin_constant_p(fmt)) \ 60748ead020SFrederic Weisbecker __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ 60807d777feSSteven Rostedt else \ 60948ead020SFrederic Weisbecker __trace_printk(_THIS_IP_, fmt, ##args); \ 610769b0441SFrederic Weisbecker } while (0) 611769b0441SFrederic Weisbecker 612b9075fa9SJoe Perches extern __printf(2, 3) 613b9075fa9SJoe Perches int __trace_bprintk(unsigned long ip, const char *fmt, ...); 61448ead020SFrederic Weisbecker 615b9075fa9SJoe Perches extern __printf(2, 3) 616b9075fa9SJoe Perches int __trace_printk(unsigned long ip, const char *fmt, ...); 617769b0441SFrederic Weisbecker 61809ae7234SSteven Rostedt (Red Hat) /** 61909ae7234SSteven Rostedt (Red Hat) * trace_puts - write a string into the ftrace buffer 62009ae7234SSteven Rostedt (Red Hat) * @str: the string to record 62109ae7234SSteven Rostedt (Red Hat) * 62209ae7234SSteven Rostedt (Red Hat) * Note: __trace_bputs is an internal function for trace_puts and 62309ae7234SSteven Rostedt (Red Hat) * the @ip is passed in via the trace_puts macro. 62409ae7234SSteven Rostedt (Red Hat) * 62509ae7234SSteven Rostedt (Red Hat) * This is similar to trace_printk() but is made for those really fast 62609ae7234SSteven Rostedt (Red Hat) * paths that a developer wants the least amount of "Heisenbug" affects, 62709ae7234SSteven Rostedt (Red Hat) * where the processing of the print format is still too much. 62809ae7234SSteven Rostedt (Red Hat) * 62909ae7234SSteven Rostedt (Red Hat) * This function allows a kernel developer to debug fast path sections 63009ae7234SSteven Rostedt (Red Hat) * that printk is not appropriate for. By scattering in various 63109ae7234SSteven Rostedt (Red Hat) * printk like tracing in the code, a developer can quickly see 63209ae7234SSteven Rostedt (Red Hat) * where problems are occurring. 63309ae7234SSteven Rostedt (Red Hat) * 63409ae7234SSteven Rostedt (Red Hat) * This is intended as a debugging tool for the developer only. 63509ae7234SSteven Rostedt (Red Hat) * Please refrain from leaving trace_puts scattered around in 63609ae7234SSteven Rostedt (Red Hat) * your code. (Extra memory is used for special buffers that are 63709ae7234SSteven Rostedt (Red Hat) * allocated when trace_puts() is used) 63809ae7234SSteven Rostedt (Red Hat) * 63909ae7234SSteven Rostedt (Red Hat) * Returns: 0 if nothing was written, positive # if string was. 64009ae7234SSteven Rostedt (Red Hat) * (1 when __trace_bputs is used, strlen(str) when __trace_puts is used) 64109ae7234SSteven Rostedt (Red Hat) */ 64209ae7234SSteven Rostedt (Red Hat) 64309ae7234SSteven Rostedt (Red Hat) #define trace_puts(str) ({ \ 64409ae7234SSteven Rostedt (Red Hat) static const char *trace_printk_fmt \ 64509ae7234SSteven Rostedt (Red Hat) __attribute__((section("__trace_printk_fmt"))) = \ 64609ae7234SSteven Rostedt (Red Hat) __builtin_constant_p(str) ? str : NULL; \ 64709ae7234SSteven Rostedt (Red Hat) \ 64809ae7234SSteven Rostedt (Red Hat) if (__builtin_constant_p(str)) \ 64909ae7234SSteven Rostedt (Red Hat) __trace_bputs(_THIS_IP_, trace_printk_fmt); \ 65009ae7234SSteven Rostedt (Red Hat) else \ 65109ae7234SSteven Rostedt (Red Hat) __trace_puts(_THIS_IP_, str, strlen(str)); \ 65209ae7234SSteven Rostedt (Red Hat) }) 653bcf312cfSSteven Rostedt extern int __trace_bputs(unsigned long ip, const char *str); 654bcf312cfSSteven Rostedt extern int __trace_puts(unsigned long ip, const char *str, int size); 65509ae7234SSteven Rostedt (Red Hat) 656c142be8eSSteven Rostedt (Red Hat) extern void trace_dump_stack(int skip); 65703889384SSteven Rostedt 65848ead020SFrederic Weisbecker /* 65948ead020SFrederic Weisbecker * The double __builtin_constant_p is because gcc will give us an error 66048ead020SFrederic Weisbecker * if we try to allocate the static variable to fmt if it is not a 66148ead020SFrederic Weisbecker * constant. Even with the outer if statement. 66248ead020SFrederic Weisbecker */ 663769b0441SFrederic Weisbecker #define ftrace_vprintk(fmt, vargs) \ 664769b0441SFrederic Weisbecker do { \ 66548ead020SFrederic Weisbecker if (__builtin_constant_p(fmt)) { \ 666769b0441SFrederic Weisbecker static const char *trace_printk_fmt \ 66748ead020SFrederic Weisbecker __attribute__((section("__trace_printk_fmt"))) = \ 66848ead020SFrederic Weisbecker __builtin_constant_p(fmt) ? fmt : NULL; \ 6697bffc23eSIngo Molnar \ 67048ead020SFrederic Weisbecker __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \ 67148ead020SFrederic Weisbecker } else \ 67248ead020SFrederic Weisbecker __ftrace_vprintk(_THIS_IP_, fmt, vargs); \ 673769b0441SFrederic Weisbecker } while (0) 674769b0441SFrederic Weisbecker 675526211bcSIngo Molnar extern int 67648ead020SFrederic Weisbecker __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap); 67748ead020SFrederic Weisbecker 67848ead020SFrederic Weisbecker extern int 679526211bcSIngo Molnar __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); 680769b0441SFrederic Weisbecker 681cecbca96SFrederic Weisbecker extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode); 682526211bcSIngo Molnar #else 683526211bcSIngo Molnar static inline void tracing_start(void) { } 684526211bcSIngo Molnar static inline void tracing_stop(void) { } 685e67bc51eSDhaval Giani static inline void trace_dump_stack(int skip) { } 68693d68e52SSteven Rostedt 68793d68e52SSteven Rostedt static inline void tracing_on(void) { } 68893d68e52SSteven Rostedt static inline void tracing_off(void) { } 68993d68e52SSteven Rostedt static inline int tracing_is_on(void) { return 0; } 690ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot(void) { } 691ad909e21SSteven Rostedt (Red Hat) static inline void tracing_snapshot_alloc(void) { } 69293d68e52SSteven Rostedt 69360efc15aSMichal Hocko static inline __printf(1, 2) 69460efc15aSMichal Hocko int trace_printk(const char *fmt, ...) 695526211bcSIngo Molnar { 696526211bcSIngo Molnar return 0; 697526211bcSIngo Molnar } 698526211bcSIngo Molnar static inline int 699526211bcSIngo Molnar ftrace_vprintk(const char *fmt, va_list ap) 700526211bcSIngo Molnar { 701526211bcSIngo Molnar return 0; 702526211bcSIngo Molnar } 703cecbca96SFrederic Weisbecker static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } 704769b0441SFrederic Weisbecker #endif /* CONFIG_TRACING */ 705526211bcSIngo Molnar 706526211bcSIngo Molnar /* 707bdf4bbaaSHarvey Harrison * min()/max()/clamp() macros that also do 7081da177e4SLinus Torvalds * strict type-checking.. See the 7091da177e4SLinus Torvalds * "unnecessary" pointer comparison. 7101da177e4SLinus Torvalds */ 7111da177e4SLinus Torvalds #define min(x, y) ({ \ 712bdf4bbaaSHarvey Harrison typeof(x) _min1 = (x); \ 713bdf4bbaaSHarvey Harrison typeof(y) _min2 = (y); \ 714bdf4bbaaSHarvey Harrison (void) (&_min1 == &_min2); \ 715bdf4bbaaSHarvey Harrison _min1 < _min2 ? _min1 : _min2; }) 7161da177e4SLinus Torvalds 7171da177e4SLinus Torvalds #define max(x, y) ({ \ 718bdf4bbaaSHarvey Harrison typeof(x) _max1 = (x); \ 719bdf4bbaaSHarvey Harrison typeof(y) _max2 = (y); \ 720bdf4bbaaSHarvey Harrison (void) (&_max1 == &_max2); \ 721bdf4bbaaSHarvey Harrison _max1 > _max2 ? _max1 : _max2; }) 722bdf4bbaaSHarvey Harrison 723f27c85c5SHagen Paul Pfeifer #define min3(x, y, z) ({ \ 724f27c85c5SHagen Paul Pfeifer typeof(x) _min1 = (x); \ 725f27c85c5SHagen Paul Pfeifer typeof(y) _min2 = (y); \ 726f27c85c5SHagen Paul Pfeifer typeof(z) _min3 = (z); \ 727f27c85c5SHagen Paul Pfeifer (void) (&_min1 == &_min2); \ 728f27c85c5SHagen Paul Pfeifer (void) (&_min1 == &_min3); \ 729f27c85c5SHagen Paul Pfeifer _min1 < _min2 ? (_min1 < _min3 ? _min1 : _min3) : \ 730f27c85c5SHagen Paul Pfeifer (_min2 < _min3 ? _min2 : _min3); }) 731f27c85c5SHagen Paul Pfeifer 732f27c85c5SHagen Paul Pfeifer #define max3(x, y, z) ({ \ 733f27c85c5SHagen Paul Pfeifer typeof(x) _max1 = (x); \ 734f27c85c5SHagen Paul Pfeifer typeof(y) _max2 = (y); \ 735f27c85c5SHagen Paul Pfeifer typeof(z) _max3 = (z); \ 736f27c85c5SHagen Paul Pfeifer (void) (&_max1 == &_max2); \ 737f27c85c5SHagen Paul Pfeifer (void) (&_max1 == &_max3); \ 738f27c85c5SHagen Paul Pfeifer _max1 > _max2 ? (_max1 > _max3 ? _max1 : _max3) : \ 739f27c85c5SHagen Paul Pfeifer (_max2 > _max3 ? _max2 : _max3); }) 740f27c85c5SHagen Paul Pfeifer 741bdf4bbaaSHarvey Harrison /** 742c8bf1336SMartin K. Petersen * min_not_zero - return the minimum that is _not_ zero, unless both are zero 743c8bf1336SMartin K. Petersen * @x: value1 744c8bf1336SMartin K. Petersen * @y: value2 745c8bf1336SMartin K. Petersen */ 746c8bf1336SMartin K. Petersen #define min_not_zero(x, y) ({ \ 747c8bf1336SMartin K. Petersen typeof(x) __x = (x); \ 748c8bf1336SMartin K. Petersen typeof(y) __y = (y); \ 749c8bf1336SMartin K. Petersen __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); }) 750c8bf1336SMartin K. Petersen 751c8bf1336SMartin K. Petersen /** 752bdf4bbaaSHarvey Harrison * clamp - return a value clamped to a given range with strict typechecking 753bdf4bbaaSHarvey Harrison * @val: current value 754bdf4bbaaSHarvey Harrison * @min: minimum allowable value 755bdf4bbaaSHarvey Harrison * @max: maximum allowable value 756bdf4bbaaSHarvey Harrison * 757bdf4bbaaSHarvey Harrison * This macro does strict typechecking of min/max to make sure they are of the 758bdf4bbaaSHarvey Harrison * same type as val. See the unnecessary pointer comparisons. 759bdf4bbaaSHarvey Harrison */ 760bdf4bbaaSHarvey Harrison #define clamp(val, min, max) ({ \ 761bdf4bbaaSHarvey Harrison typeof(val) __val = (val); \ 762bdf4bbaaSHarvey Harrison typeof(min) __min = (min); \ 763bdf4bbaaSHarvey Harrison typeof(max) __max = (max); \ 764bdf4bbaaSHarvey Harrison (void) (&__val == &__min); \ 765bdf4bbaaSHarvey Harrison (void) (&__val == &__max); \ 766bdf4bbaaSHarvey Harrison __val = __val < __min ? __min: __val; \ 767bdf4bbaaSHarvey Harrison __val > __max ? __max: __val; }) 7681da177e4SLinus Torvalds 7691da177e4SLinus Torvalds /* 7701da177e4SLinus Torvalds * ..and if you can't take the strict 7711da177e4SLinus Torvalds * types, you can specify one yourself. 7721da177e4SLinus Torvalds * 773bdf4bbaaSHarvey Harrison * Or not use min/max/clamp at all, of course. 7741da177e4SLinus Torvalds */ 775bdf4bbaaSHarvey Harrison #define min_t(type, x, y) ({ \ 776bdf4bbaaSHarvey Harrison type __min1 = (x); \ 777bdf4bbaaSHarvey Harrison type __min2 = (y); \ 778bdf4bbaaSHarvey Harrison __min1 < __min2 ? __min1: __min2; }) 7791da177e4SLinus Torvalds 780bdf4bbaaSHarvey Harrison #define max_t(type, x, y) ({ \ 781bdf4bbaaSHarvey Harrison type __max1 = (x); \ 782bdf4bbaaSHarvey Harrison type __max2 = (y); \ 783bdf4bbaaSHarvey Harrison __max1 > __max2 ? __max1: __max2; }) 784bdf4bbaaSHarvey Harrison 785bdf4bbaaSHarvey Harrison /** 786bdf4bbaaSHarvey Harrison * clamp_t - return a value clamped to a given range using a given type 787bdf4bbaaSHarvey Harrison * @type: the type of variable to use 788bdf4bbaaSHarvey Harrison * @val: current value 789bdf4bbaaSHarvey Harrison * @min: minimum allowable value 790bdf4bbaaSHarvey Harrison * @max: maximum allowable value 791bdf4bbaaSHarvey Harrison * 792bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of type 793bdf4bbaaSHarvey Harrison * 'type' to make all the comparisons. 794bdf4bbaaSHarvey Harrison */ 795bdf4bbaaSHarvey Harrison #define clamp_t(type, val, min, max) ({ \ 796bdf4bbaaSHarvey Harrison type __val = (val); \ 797bdf4bbaaSHarvey Harrison type __min = (min); \ 798bdf4bbaaSHarvey Harrison type __max = (max); \ 799bdf4bbaaSHarvey Harrison __val = __val < __min ? __min: __val; \ 800bdf4bbaaSHarvey Harrison __val > __max ? __max: __val; }) 801bdf4bbaaSHarvey Harrison 802bdf4bbaaSHarvey Harrison /** 803bdf4bbaaSHarvey Harrison * clamp_val - return a value clamped to a given range using val's type 804bdf4bbaaSHarvey Harrison * @val: current value 805bdf4bbaaSHarvey Harrison * @min: minimum allowable value 806bdf4bbaaSHarvey Harrison * @max: maximum allowable value 807bdf4bbaaSHarvey Harrison * 808bdf4bbaaSHarvey Harrison * This macro does no typechecking and uses temporary variables of whatever 809bdf4bbaaSHarvey Harrison * type the input argument 'val' is. This is useful when val is an unsigned 810bdf4bbaaSHarvey Harrison * type and min and max are literals that will otherwise be assigned a signed 811bdf4bbaaSHarvey Harrison * integer type. 812bdf4bbaaSHarvey Harrison */ 813bdf4bbaaSHarvey Harrison #define clamp_val(val, min, max) ({ \ 814bdf4bbaaSHarvey Harrison typeof(val) __val = (val); \ 815bdf4bbaaSHarvey Harrison typeof(val) __min = (min); \ 816bdf4bbaaSHarvey Harrison typeof(val) __max = (max); \ 817bdf4bbaaSHarvey Harrison __val = __val < __min ? __min: __val; \ 818bdf4bbaaSHarvey Harrison __val > __max ? __max: __val; }) 8191da177e4SLinus Torvalds 82091f68b73SWu Fengguang 82191f68b73SWu Fengguang /* 82291f68b73SWu Fengguang * swap - swap value of @a and @b 82391f68b73SWu Fengguang */ 824ac7b9004SPeter Zijlstra #define swap(a, b) \ 825ac7b9004SPeter Zijlstra do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) 82691f68b73SWu Fengguang 8271da177e4SLinus Torvalds /** 8281da177e4SLinus Torvalds * container_of - cast a member of a structure out to the containing structure 8291da177e4SLinus Torvalds * @ptr: the pointer to the member. 8301da177e4SLinus Torvalds * @type: the type of the container struct this is embedded in. 8311da177e4SLinus Torvalds * @member: the name of the member within the struct. 8321da177e4SLinus Torvalds * 8331da177e4SLinus Torvalds */ 8341da177e4SLinus Torvalds #define container_of(ptr, type, member) ({ \ 8351da177e4SLinus Torvalds const typeof( ((type *)0)->member ) *__mptr = (ptr); \ 8361da177e4SLinus Torvalds (type *)( (char *)__mptr - offsetof(type,member) );}) 8371da177e4SLinus Torvalds 838b9d4f426SArnaud Lacombe /* Trap pasters of __FUNCTION__ at compile-time */ 839b9d4f426SArnaud Lacombe #define __FUNCTION__ (__func__) 840b9d4f426SArnaud Lacombe 841b9d4f426SArnaud Lacombe /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ 842b9d4f426SArnaud Lacombe #ifdef CONFIG_FTRACE_MCOUNT_RECORD 843b9d4f426SArnaud Lacombe # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD 844b9d4f426SArnaud Lacombe #endif 8459d00f92fSWANG Cong 84658f86cc8SRusty Russell /* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */ 84758f86cc8SRusty Russell #define VERIFY_OCTAL_PERMISSIONS(perms) \ 84858f86cc8SRusty Russell (BUILD_BUG_ON_ZERO((perms) < 0) + \ 84958f86cc8SRusty Russell BUILD_BUG_ON_ZERO((perms) > 0777) + \ 85058f86cc8SRusty Russell /* User perms >= group perms >= other perms */ \ 85158f86cc8SRusty Russell BUILD_BUG_ON_ZERO(((perms) >> 6) < (((perms) >> 3) & 7)) + \ 85258f86cc8SRusty Russell BUILD_BUG_ON_ZERO((((perms) >> 3) & 7) < ((perms) & 7)) + \ 85358f86cc8SRusty Russell (perms)) 8541da177e4SLinus Torvalds #endif 855