Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_KERNEL_H |
| 2 | #define _LINUX_KERNEL_H |
| 3 | |
| 4 | /* |
| 5 | * 'kernel.h' contains some often-used function prototypes etc |
| 6 | */ |
Alexey Dobriyan | a79ff73 | 2010-04-13 11:21:46 +0200 | [diff] [blame] | 7 | #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1) |
| 8 | #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #ifdef __KERNEL__ |
| 11 | |
| 12 | #include <stdarg.h> |
| 13 | #include <linux/linkage.h> |
| 14 | #include <linux/stddef.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/compiler.h> |
| 17 | #include <linux/bitops.h> |
David Howells | f0d1b0b | 2006-12-08 02:37:49 -0800 | [diff] [blame] | 18 | #include <linux/log2.h> |
Andrew Morton | e0deaff4 | 2008-07-25 01:45:24 -0700 | [diff] [blame] | 19 | #include <linux/typecheck.h> |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 20 | #include <linux/dynamic_debug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/byteorder.h> |
| 22 | #include <asm/bug.h> |
| 23 | |
Roman Zippel | 3eb3c74 | 2007-01-10 14:45:28 +0100 | [diff] [blame] | 24 | extern const char linux_banner[]; |
| 25 | extern const char linux_proc_banner[]; |
| 26 | |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 27 | #define USHRT_MAX ((u16)(~0U)) |
| 28 | #define SHRT_MAX ((s16)(USHRT_MAX>>1)) |
| 29 | #define SHRT_MIN ((s16)(-SHRT_MAX - 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #define INT_MAX ((int)(~0U>>1)) |
| 31 | #define INT_MIN (-INT_MAX - 1) |
| 32 | #define UINT_MAX (~0U) |
| 33 | #define LONG_MAX ((long)(~0UL>>1)) |
| 34 | #define LONG_MIN (-LONG_MAX - 1) |
| 35 | #define ULONG_MAX (~0UL) |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 36 | #define LLONG_MAX ((long long)(~0ULL>>1)) |
| 37 | #define LLONG_MIN (-LLONG_MAX - 1) |
| 38 | #define ULLONG_MAX (~0ULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #define STACK_MAGIC 0xdeadbeef |
| 41 | |
Alexey Dobriyan | a79ff73 | 2010-04-13 11:21:46 +0200 | [diff] [blame] | 42 | #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) |
Alexey Dobriyan | 9f93ff5 | 2010-04-13 14:09:15 +0200 | [diff] [blame] | 43 | #define __ALIGN_MASK(x, mask) __ALIGN_KERNEL_MASK((x), (mask)) |
Matthew Wilcox | a83308e | 2007-09-11 15:23:47 -0700 | [diff] [blame] | 44 | #define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a))) |
Herbert Xu | f10db62 | 2008-02-06 01:37:05 -0800 | [diff] [blame] | 45 | #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) |
Linus Torvalds | 2ea5814 | 2006-11-26 19:05:22 -0800 | [diff] [blame] | 46 | |
Rusty Russell | c5e631cf | 2007-05-06 14:51:05 -0700 | [diff] [blame] | 47 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) |
| 48 | |
Yinghai Lu | 9b3be9f | 2010-02-10 01:20:29 -0800 | [diff] [blame] | 49 | /* |
| 50 | * This looks more complex than it should be. But we need to |
| 51 | * get the type for the ~ right in round_down (it needs to be |
| 52 | * as wide as the result!), and we want to evaluate the macro |
| 53 | * arguments just once each. |
| 54 | */ |
| 55 | #define __round_mask(x, y) ((__typeof__(x))((y)-1)) |
| 56 | #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1) |
| 57 | #define round_down(x, y) ((x) & ~__round_mask(x, y)) |
| 58 | |
Jan Beulich | 4552d5d | 2006-06-26 13:57:28 +0200 | [diff] [blame] | 59 | #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) |
Steven Whitehouse | 930631e | 2006-09-25 23:32:40 -0700 | [diff] [blame] | 60 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) |
Eric Paris | b28efd5 | 2010-10-13 17:50:08 -0400 | [diff] [blame] | 61 | #define roundup(x, y) ( \ |
| 62 | { \ |
Tetsuo Handa | 6070bf3 | 2010-11-08 11:20:49 +0900 | [diff] [blame^] | 63 | const typeof(y) __y = y; \ |
Eric Paris | b28efd5 | 2010-10-13 17:50:08 -0400 | [diff] [blame] | 64 | (((x) + (__y - 1)) / __y) * __y; \ |
| 65 | } \ |
| 66 | ) |
Eric Paris | 686a0f3 | 2010-10-13 17:50:02 -0400 | [diff] [blame] | 67 | #define rounddown(x, y) ( \ |
| 68 | { \ |
| 69 | typeof(x) __x = (x); \ |
| 70 | __x - (__x % (y)); \ |
| 71 | } \ |
| 72 | ) |
Darrick J. Wong | 9fe0608 | 2009-01-06 14:40:51 -0800 | [diff] [blame] | 73 | #define DIV_ROUND_CLOSEST(x, divisor)( \ |
| 74 | { \ |
| 75 | typeof(divisor) __divisor = divisor; \ |
| 76 | (((x) + ((__divisor) / 2)) / (__divisor)); \ |
| 77 | } \ |
| 78 | ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Eduard - Gabriel Munteanu | ca31e14 | 2008-07-05 12:14:23 +0300 | [diff] [blame] | 80 | #define _RET_IP_ (unsigned long)__builtin_return_address(0) |
| 81 | #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) |
| 82 | |
Bartlomiej Zolnierkiewicz | 90c699a | 2009-06-19 08:08:50 +0200 | [diff] [blame] | 83 | #ifdef CONFIG_LBDAF |
Jens Axboe | 2da96ac | 2007-10-12 12:40:38 +0200 | [diff] [blame] | 84 | # include <asm/div64.h> |
| 85 | # define sector_div(a, b) do_div(a, b) |
| 86 | #else |
| 87 | # define sector_div(n, b)( \ |
| 88 | { \ |
| 89 | int _res; \ |
| 90 | _res = (n) % (b); \ |
| 91 | (n) /= (b); \ |
| 92 | _res; \ |
| 93 | } \ |
| 94 | ) |
| 95 | #endif |
| 96 | |
Andrew Morton | 218e180 | 2007-05-10 03:15:18 -0700 | [diff] [blame] | 97 | /** |
| 98 | * upper_32_bits - return bits 32-63 of a number |
| 99 | * @n: the number we're accessing |
| 100 | * |
| 101 | * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress |
| 102 | * the "right shift count >= width of type" warning when that quantity is |
| 103 | * 32-bits. |
| 104 | */ |
| 105 | #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) |
| 106 | |
Joerg Roedel | 204b885 | 2008-07-29 22:33:42 -0700 | [diff] [blame] | 107 | /** |
| 108 | * lower_32_bits - return bits 0-31 of a number |
| 109 | * @n: the number we're accessing |
| 110 | */ |
| 111 | #define lower_32_bits(n) ((u32)(n)) |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | #define KERN_EMERG "<0>" /* system is unusable */ |
| 114 | #define KERN_ALERT "<1>" /* action must be taken immediately */ |
| 115 | #define KERN_CRIT "<2>" /* critical conditions */ |
| 116 | #define KERN_ERR "<3>" /* error conditions */ |
| 117 | #define KERN_WARNING "<4>" /* warning conditions */ |
| 118 | #define KERN_NOTICE "<5>" /* normal but significant condition */ |
| 119 | #define KERN_INFO "<6>" /* informational */ |
| 120 | #define KERN_DEBUG "<7>" /* debug-level messages */ |
| 121 | |
Linus Torvalds | e28d713 | 2009-06-16 11:02:28 -0700 | [diff] [blame] | 122 | /* Use the default kernel loglevel */ |
| 123 | #define KERN_DEFAULT "<d>" |
Ingo Molnar | 4749252 | 2007-10-16 23:30:29 -0700 | [diff] [blame] | 124 | /* |
| 125 | * Annotation for a "continued" line of log printout (only done after a |
| 126 | * line that had no enclosing \n). Only to be used by core/arch code |
| 127 | * during early bootup (a continued line is not SMP-safe otherwise). |
| 128 | */ |
Linus Torvalds | 5fd29d6 | 2009-06-16 10:57:02 -0700 | [diff] [blame] | 129 | #define KERN_CONT "<c>" |
Ingo Molnar | 4749252 | 2007-10-16 23:30:29 -0700 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | extern int console_printk[]; |
| 132 | |
| 133 | #define console_loglevel (console_printk[0]) |
| 134 | #define default_message_loglevel (console_printk[1]) |
| 135 | #define minimum_console_loglevel (console_printk[2]) |
| 136 | #define default_console_loglevel (console_printk[3]) |
| 137 | |
| 138 | struct completion; |
akpm@osdl.org | df2e71f | 2006-01-09 20:51:37 -0800 | [diff] [blame] | 139 | struct pt_regs; |
| 140 | struct user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Uwe Kleine-König | 070cb06 | 2008-08-12 15:08:59 -0700 | [diff] [blame] | 142 | #ifdef CONFIG_PREEMPT_VOLUNTARY |
| 143 | extern int _cond_resched(void); |
| 144 | # define might_resched() _cond_resched() |
| 145 | #else |
| 146 | # define might_resched() do { } while (0) |
| 147 | #endif |
| 148 | |
Randy Dunlap | 7106a27 | 2008-10-29 14:01:15 -0700 | [diff] [blame] | 149 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
Simon Kagstrom | d894837 | 2009-12-23 11:08:18 +0100 | [diff] [blame] | 150 | void __might_sleep(const char *file, int line, int preempt_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /** |
| 152 | * might_sleep - annotation for functions that can sleep |
| 153 | * |
| 154 | * this macro will print a stack trace if it is executed in an atomic |
| 155 | * context (spinlock, irq-handler, ...). |
| 156 | * |
| 157 | * This is a useful debugging help to be able to catch problems early and not |
Jim Cromie | e20ec99 | 2006-11-30 04:46:13 +0100 | [diff] [blame] | 158 | * be bitten later when the calling function happens to sleep when it is not |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | * supposed to. |
| 160 | */ |
Ingo Molnar | f8cbd99 | 2005-06-25 14:57:39 -0700 | [diff] [blame] | 161 | # define might_sleep() \ |
Frederic Weisbecker | e4aafea | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 162 | do { __might_sleep(__FILE__, __LINE__, 0); might_resched(); } while (0) |
Ingo Molnar | f8cbd99 | 2005-06-25 14:57:39 -0700 | [diff] [blame] | 163 | #else |
Simon Kagstrom | d894837 | 2009-12-23 11:08:18 +0100 | [diff] [blame] | 164 | static inline void __might_sleep(const char *file, int line, |
| 165 | int preempt_offset) { } |
Ingo Molnar | f8cbd99 | 2005-06-25 14:57:39 -0700 | [diff] [blame] | 166 | # define might_sleep() do { might_resched(); } while (0) |
| 167 | #endif |
| 168 | |
Hua Zhong | 368a5fa | 2006-06-23 02:05:42 -0700 | [diff] [blame] | 169 | #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) |
Ingo Molnar | f8cbd99 | 2005-06-25 14:57:39 -0700 | [diff] [blame] | 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | #define abs(x) ({ \ |
Rolf Eike Beer | a49c59c | 2009-09-22 16:44:03 -0700 | [diff] [blame] | 172 | long __x = (x); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | (__x < 0) ? -__x : __x; \ |
| 174 | }) |
| 175 | |
Brian Behlendorf | 658716d | 2010-10-26 14:23:10 -0700 | [diff] [blame] | 176 | #define abs64(x) ({ \ |
| 177 | s64 __x = (x); \ |
| 178 | (__x < 0) ? -__x : __x; \ |
| 179 | }) |
| 180 | |
Nick Piggin | 3ee1afa | 2008-09-10 13:37:17 +0200 | [diff] [blame] | 181 | #ifdef CONFIG_PROVE_LOCKING |
| 182 | void might_fault(void); |
| 183 | #else |
| 184 | static inline void might_fault(void) |
| 185 | { |
| 186 | might_sleep(); |
| 187 | } |
| 188 | #endif |
| 189 | |
Joe Perches | 7db6f5f | 2010-06-27 01:02:33 +0000 | [diff] [blame] | 190 | struct va_format { |
| 191 | const char *fmt; |
| 192 | va_list *va; |
| 193 | }; |
| 194 | |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 195 | extern struct atomic_notifier_head panic_notifier_list; |
TAMUKI Shoichi | c7ff0d9 | 2010-08-10 18:03:28 -0700 | [diff] [blame] | 196 | extern long (*panic_blink)(int state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | NORET_TYPE void panic(const char * fmt, ...) |
Andi Kleen | a586df0 | 2007-07-21 17:10:00 +0200 | [diff] [blame] | 198 | __attribute__ ((NORET_AND format (printf, 1, 2))) __cold; |
Andrew Morton | dd28779 | 2006-03-23 03:00:57 -0800 | [diff] [blame] | 199 | extern void oops_enter(void); |
| 200 | extern void oops_exit(void); |
Anton Blanchard | 863a604 | 2010-08-10 18:03:30 -0700 | [diff] [blame] | 201 | void print_oops_end_marker(void); |
Andrew Morton | dd28779 | 2006-03-23 03:00:57 -0800 | [diff] [blame] | 202 | extern int oops_may_print(void); |
Harvey Harrison | ec70158 | 2008-02-08 04:19:55 -0800 | [diff] [blame] | 203 | NORET_TYPE void do_exit(long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | ATTRIB_NORET; |
| 205 | NORET_TYPE void complete_and_exit(struct completion *, long) |
| 206 | ATTRIB_NORET; |
| 207 | extern unsigned long simple_strtoul(const char *,char **,unsigned int); |
| 208 | extern long simple_strtol(const char *,char **,unsigned int); |
| 209 | extern unsigned long long simple_strtoull(const char *,char **,unsigned int); |
| 210 | extern long long simple_strtoll(const char *,char **,unsigned int); |
Andrew Morton | a55621f | 2010-10-26 14:22:25 -0700 | [diff] [blame] | 211 | extern int __must_check strict_strtoul(const char *, unsigned int, unsigned long *); |
| 212 | extern int __must_check strict_strtol(const char *, unsigned int, long *); |
| 213 | extern int __must_check strict_strtoull(const char *, unsigned int, unsigned long long *); |
| 214 | extern int __must_check strict_strtoll(const char *, unsigned int, long long *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | extern int sprintf(char * buf, const char * fmt, ...) |
| 216 | __attribute__ ((format (printf, 2, 3))); |
| 217 | extern int vsprintf(char *buf, const char *, va_list) |
| 218 | __attribute__ ((format (printf, 2, 0))); |
| 219 | extern int snprintf(char * buf, size_t size, const char * fmt, ...) |
| 220 | __attribute__ ((format (printf, 3, 4))); |
| 221 | extern int vsnprintf(char *buf, size_t size, const char *fmt, va_list args) |
| 222 | __attribute__ ((format (printf, 3, 0))); |
| 223 | extern int scnprintf(char * buf, size_t size, const char * fmt, ...) |
| 224 | __attribute__ ((format (printf, 3, 4))); |
| 225 | extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args) |
| 226 | __attribute__ ((format (printf, 3, 0))); |
Jeremy Fitzhardinge | e905914 | 2006-06-25 05:49:17 -0700 | [diff] [blame] | 227 | extern char *kasprintf(gfp_t gfp, const char *fmt, ...) |
| 228 | __attribute__ ((format (printf, 2, 3))); |
Jeremy Fitzhardinge | 11443ec | 2007-04-30 15:09:56 -0700 | [diff] [blame] | 229 | extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | extern int sscanf(const char *, const char *, ...) |
| 232 | __attribute__ ((format (scanf, 2, 3))); |
| 233 | extern int vsscanf(const char *, const char *, va_list) |
| 234 | __attribute__ ((format (scanf, 2, 0))); |
| 235 | |
| 236 | extern int get_option(char **str, int *pint); |
| 237 | extern char *get_options(const char *str, int nints, int *ints); |
Jeremy Fitzhardinge | d974ae3 | 2008-07-24 16:27:46 -0700 | [diff] [blame] | 238 | extern unsigned long long memparse(const char *ptr, char **retptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Trent Piepho | 5e37661 | 2006-05-15 09:44:06 -0700 | [diff] [blame] | 240 | extern int core_kernel_text(unsigned long addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | extern int __kernel_text_address(unsigned long addr); |
| 242 | extern int kernel_text_address(unsigned long addr); |
Arjan van de Ven | ab7476c | 2008-08-15 15:29:38 -0700 | [diff] [blame] | 243 | extern int func_ptr_is_kernel_text(void *ptr); |
Arjan van de Ven | ab7476c | 2008-08-15 15:29:38 -0700 | [diff] [blame] | 244 | |
Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 245 | struct pid; |
| 246 | extern struct pid *session_of_pgrp(struct pid *pgrp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Thomas Renninger | a0ad05c | 2008-09-01 14:27:02 +0200 | [diff] [blame] | 248 | /* |
| 249 | * FW_BUG |
| 250 | * Add this to a message where you are sure the firmware is buggy or behaves |
| 251 | * really stupid or out of spec. Be aware that the responsible BIOS developer |
| 252 | * should be able to fix this issue or at least get a concrete idea of the |
| 253 | * problem by reading your message without the need of looking at the kernel |
| 254 | * code. |
| 255 | * |
| 256 | * Use it for definite and high priority BIOS bugs. |
| 257 | * |
| 258 | * FW_WARN |
| 259 | * Use it for not that clear (e.g. could the kernel messed up things already?) |
| 260 | * and medium priority BIOS bugs. |
| 261 | * |
| 262 | * FW_INFO |
| 263 | * Use this one if you want to tell the user or vendor about something |
| 264 | * suspicious, but generally harmless related to the firmware. |
| 265 | * |
| 266 | * Use it for information or very low priority BIOS bugs. |
| 267 | */ |
| 268 | #define FW_BUG "[Firmware Bug]: " |
| 269 | #define FW_WARN "[Firmware Warn]: " |
| 270 | #define FW_INFO "[Firmware Info]: " |
| 271 | |
Huang Ying | c6de9f0 | 2010-05-31 16:48:09 +0800 | [diff] [blame] | 272 | /* |
| 273 | * HW_ERR |
| 274 | * Add this to a message for hardware errors, so that user can report |
| 275 | * it to hardware vendor instead of LKML or software vendor. |
| 276 | */ |
| 277 | #define HW_ERR "[Hardware Error]: " |
| 278 | |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 279 | #ifdef CONFIG_PRINTK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | asmlinkage int vprintk(const char *fmt, va_list args) |
| 281 | __attribute__ ((format (printf, 1, 0))); |
| 282 | asmlinkage int printk(const char * fmt, ...) |
Andi Kleen | a586df0 | 2007-07-21 17:10:00 +0200 | [diff] [blame] | 283 | __attribute__ ((format (printf, 1, 2))) __cold; |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 284 | |
Andrew Morton | 77006a0 | 2010-10-26 14:22:49 -0700 | [diff] [blame] | 285 | /* |
| 286 | * Please don't use printk_ratelimit(), because it shares ratelimiting state |
| 287 | * with all other unrelated printk_ratelimit() callsites. Instead use |
| 288 | * printk_ratelimited() or plain old __ratelimit(). |
| 289 | */ |
Christian Borntraeger | 5c82871 | 2009-10-23 14:58:11 +0200 | [diff] [blame] | 290 | extern int __printk_ratelimit(const char *func); |
| 291 | #define printk_ratelimit() __printk_ratelimit(__func__) |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 292 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 293 | unsigned int interval_msec); |
Ingo Molnar | f036be9 | 2009-02-05 13:45:43 +0100 | [diff] [blame] | 294 | |
Dave Young | af91322 | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 295 | extern int printk_delay_msec; |
| 296 | |
Ingo Molnar | f036be9 | 2009-02-05 13:45:43 +0100 | [diff] [blame] | 297 | /* |
| 298 | * Print a one-time message (analogous to WARN_ONCE() et al): |
| 299 | */ |
| 300 | #define printk_once(x...) ({ \ |
Joe Perches | 0b2749a | 2009-12-14 18:00:19 -0800 | [diff] [blame] | 301 | static bool __print_once; \ |
Ingo Molnar | f036be9 | 2009-02-05 13:45:43 +0100 | [diff] [blame] | 302 | \ |
Joe Perches | 0b2749a | 2009-12-14 18:00:19 -0800 | [diff] [blame] | 303 | if (!__print_once) { \ |
| 304 | __print_once = true; \ |
Ingo Molnar | f036be9 | 2009-02-05 13:45:43 +0100 | [diff] [blame] | 305 | printk(x); \ |
| 306 | } \ |
| 307 | }) |
| 308 | |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 309 | void log_buf_kexec_setup(void); |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 310 | #else |
| 311 | static inline int vprintk(const char *s, va_list args) |
| 312 | __attribute__ ((format (printf, 1, 0))); |
| 313 | static inline int vprintk(const char *s, va_list args) { return 0; } |
| 314 | static inline int printk(const char *s, ...) |
| 315 | __attribute__ ((format (printf, 1, 2))); |
Andi Kleen | a586df0 | 2007-07-21 17:10:00 +0200 | [diff] [blame] | 316 | static inline int __cold printk(const char *s, ...) { return 0; } |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 317 | static inline int printk_ratelimit(void) { return 0; } |
Joe Perches | 7ef3d2f | 2008-02-08 04:21:25 -0800 | [diff] [blame] | 318 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \ |
| 319 | unsigned int interval_msec) \ |
| 320 | { return false; } |
Ingo Molnar | f036be9 | 2009-02-05 13:45:43 +0100 | [diff] [blame] | 321 | |
| 322 | /* No effect, but we still get type checking even in the !PRINTK case: */ |
| 323 | #define printk_once(x...) printk(x) |
| 324 | |
Neil Horman | 04d491a | 2009-04-02 16:58:57 -0700 | [diff] [blame] | 325 | static inline void log_buf_kexec_setup(void) |
| 326 | { |
| 327 | } |
Matt Mackall | d59745c | 2005-05-01 08:59:02 -0700 | [diff] [blame] | 328 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
David Howells | 12fdff3 | 2010-08-12 16:54:57 +0100 | [diff] [blame] | 330 | /* |
| 331 | * Dummy printk for disabled debugging statements to use whilst maintaining |
| 332 | * gcc's format and side-effect checking. |
| 333 | */ |
| 334 | static inline __attribute__ ((format (printf, 1, 2))) |
| 335 | int no_printk(const char *s, ...) { return 0; } |
| 336 | |
Ingo Molnar | ced9cd4 | 2008-08-11 14:38:12 +0200 | [diff] [blame] | 337 | extern int printk_needs_cpu(int cpu); |
| 338 | extern void printk_tick(void); |
| 339 | |
Jiri Slaby | e17ba73 | 2008-05-12 15:44:40 +0200 | [diff] [blame] | 340 | extern void asmlinkage __attribute__((format(printf, 1, 2))) |
Ingo Molnar | 076f977 | 2008-01-30 13:33:06 +0100 | [diff] [blame] | 341 | early_printk(const char *fmt, ...); |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | unsigned long int_sqrt(unsigned long); |
| 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | static inline void console_silent(void) |
| 346 | { |
| 347 | console_loglevel = 0; |
| 348 | } |
| 349 | |
| 350 | static inline void console_verbose(void) |
| 351 | { |
| 352 | if (console_loglevel) |
| 353 | console_loglevel = 15; |
| 354 | } |
| 355 | |
| 356 | extern void bust_spinlocks(int yes); |
Kirill Korotaev | e3e8a75 | 2007-02-10 01:46:19 -0800 | [diff] [blame] | 357 | extern void wake_up_klogd(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ |
Adrian Bunk | aa72710 | 2006-04-10 22:53:59 -0700 | [diff] [blame] | 359 | extern int panic_timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | extern int panic_on_oops; |
Don Zickus | 8da5add | 2006-09-26 10:52:27 +0200 | [diff] [blame] | 361 | extern int panic_on_unrecovered_nmi; |
Kurt Garloff | 5211a24 | 2009-06-24 14:32:11 -0700 | [diff] [blame] | 362 | extern int panic_on_io_nmi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | extern const char *print_tainted(void); |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 364 | extern void add_taint(unsigned flag); |
| 365 | extern int test_taint(unsigned flag); |
| 366 | extern unsigned long get_taint(void); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 367 | extern int root_mountflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
| 369 | /* Values used for system_state */ |
| 370 | extern enum system_states { |
| 371 | SYSTEM_BOOTING, |
| 372 | SYSTEM_RUNNING, |
| 373 | SYSTEM_HALT, |
| 374 | SYSTEM_POWER_OFF, |
| 375 | SYSTEM_RESTART, |
Alexey Starikovskiy | 729b4d4 | 2005-12-01 04:29:00 -0500 | [diff] [blame] | 376 | SYSTEM_SUSPEND_DISK, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } system_state; |
| 378 | |
Andi Kleen | 25ddbb1 | 2008-10-15 22:01:41 -0700 | [diff] [blame] | 379 | #define TAINT_PROPRIETARY_MODULE 0 |
| 380 | #define TAINT_FORCED_MODULE 1 |
| 381 | #define TAINT_UNSAFE_SMP 2 |
| 382 | #define TAINT_FORCED_RMMOD 3 |
| 383 | #define TAINT_MACHINE_CHECK 4 |
| 384 | #define TAINT_BAD_PAGE 5 |
| 385 | #define TAINT_USER 6 |
| 386 | #define TAINT_DIE 7 |
| 387 | #define TAINT_OVERRIDDEN_ACPI_TABLE 8 |
| 388 | #define TAINT_WARN 9 |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 389 | #define TAINT_CRAP 10 |
Ben Hutchings | 92946bc | 2010-04-03 19:36:42 +0100 | [diff] [blame] | 390 | #define TAINT_FIRMWARE_WORKAROUND 11 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Andi Kleen | a586df0 | 2007-07-21 17:10:00 +0200 | [diff] [blame] | 392 | extern void dump_stack(void) __cold; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 394 | enum { |
| 395 | DUMP_PREFIX_NONE, |
| 396 | DUMP_PREFIX_ADDRESS, |
| 397 | DUMP_PREFIX_OFFSET |
| 398 | }; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 399 | extern void hex_dump_to_buffer(const void *buf, size_t len, |
| 400 | int rowsize, int groupsize, |
| 401 | char *linebuf, size_t linebuflen, bool ascii); |
| 402 | extern void print_hex_dump(const char *level, const char *prefix_str, |
| 403 | int prefix_type, int rowsize, int groupsize, |
Artem Bityutskiy | 6a0ed91 | 2007-08-07 23:43:14 +0300 | [diff] [blame] | 404 | const void *buf, size_t len, bool ascii); |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 405 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
Alan Stern | eb9a9a5 | 2007-08-10 13:01:07 -0700 | [diff] [blame] | 406 | const void *buf, size_t len); |
Harvey Harrison | 3fc9577 | 2008-05-14 16:05:49 -0700 | [diff] [blame] | 407 | |
| 408 | extern const char hex_asc[]; |
| 409 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] |
| 410 | #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] |
| 411 | |
| 412 | static inline char *pack_hex_byte(char *buf, u8 byte) |
| 413 | { |
| 414 | *buf++ = hex_asc_hi(byte); |
| 415 | *buf++ = hex_asc_lo(byte); |
| 416 | return buf; |
| 417 | } |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 418 | |
Andy Shevchenko | 90378889 | 2010-05-24 14:33:23 -0700 | [diff] [blame] | 419 | extern int hex_to_bin(char ch); |
| 420 | |
Martin Schwidefsky | d091c2f | 2008-11-12 21:16:43 +0100 | [diff] [blame] | 421 | #ifndef pr_fmt |
| 422 | #define pr_fmt(fmt) fmt |
| 423 | #endif |
| 424 | |
| 425 | #define pr_emerg(fmt, ...) \ |
| 426 | printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
| 427 | #define pr_alert(fmt, ...) \ |
| 428 | printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
| 429 | #define pr_crit(fmt, ...) \ |
| 430 | printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
| 431 | #define pr_err(fmt, ...) \ |
| 432 | printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
| 433 | #define pr_warning(fmt, ...) \ |
| 434 | printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | fc62f2f | 2010-05-24 14:33:08 -0700 | [diff] [blame] | 435 | #define pr_warn pr_warning |
Martin Schwidefsky | d091c2f | 2008-11-12 21:16:43 +0100 | [diff] [blame] | 436 | #define pr_notice(fmt, ...) \ |
| 437 | printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
| 438 | #define pr_info(fmt, ...) \ |
| 439 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
Cyrill Gorcunov | 311d076 | 2009-03-31 15:23:51 -0700 | [diff] [blame] | 440 | #define pr_cont(fmt, ...) \ |
| 441 | printk(KERN_CONT fmt, ##__VA_ARGS__) |
Emil Medve | 1f7c823 | 2007-10-16 23:29:48 -0700 | [diff] [blame] | 442 | |
Michael Ellerman | 4ccb457 | 2009-04-09 14:48:24 -0700 | [diff] [blame] | 443 | /* pr_devel() should produce zero code unless DEBUG is defined */ |
| 444 | #ifdef DEBUG |
| 445 | #define pr_devel(fmt, ...) \ |
| 446 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 447 | #else |
| 448 | #define pr_devel(fmt, ...) \ |
| 449 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) |
| 450 | #endif |
| 451 | |
Pavel Machek | 1cc6daf | 2006-08-08 01:37:15 +0200 | [diff] [blame] | 452 | /* If you are writing a driver, please use dev_dbg instead */ |
Cornelia Huck | d0d85ff | 2008-12-04 16:55:47 +0100 | [diff] [blame] | 453 | #if defined(DEBUG) |
| 454 | #define pr_debug(fmt, ...) \ |
| 455 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 456 | #elif defined(CONFIG_DYNAMIC_DEBUG) |
Greg Banks | e6e66b0 | 2009-03-11 21:07:28 +1100 | [diff] [blame] | 457 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ |
Joe Perches | 00b5586 | 2009-12-14 18:00:14 -0800 | [diff] [blame] | 458 | #define pr_debug(fmt, ...) \ |
| 459 | dynamic_pr_debug(fmt, ##__VA_ARGS__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | #else |
Martin Schwidefsky | d091c2f | 2008-11-12 21:16:43 +0100 | [diff] [blame] | 461 | #define pr_debug(fmt, ...) \ |
| 462 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | #endif |
| 464 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | /* |
Joe Perches | 8a64f33 | 2009-12-14 18:00:25 -0800 | [diff] [blame] | 466 | * ratelimited messages with local ratelimit_state, |
| 467 | * no local ratelimit_state used in the !PRINTK case |
| 468 | */ |
| 469 | #ifdef CONFIG_PRINTK |
OGAWA Hirofumi | d8521fc | 2010-05-24 14:33:11 -0700 | [diff] [blame] | 470 | #define printk_ratelimited(fmt, ...) ({ \ |
| 471 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 472 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 473 | DEFAULT_RATELIMIT_BURST); \ |
| 474 | \ |
| 475 | if (__ratelimit(&_rs)) \ |
| 476 | printk(fmt, ##__VA_ARGS__); \ |
Joe Perches | 8a64f33 | 2009-12-14 18:00:25 -0800 | [diff] [blame] | 477 | }) |
| 478 | #else |
| 479 | /* No effect, but we still get type checking even in the !PRINTK case: */ |
| 480 | #define printk_ratelimited printk |
| 481 | #endif |
| 482 | |
| 483 | #define pr_emerg_ratelimited(fmt, ...) \ |
| 484 | printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
| 485 | #define pr_alert_ratelimited(fmt, ...) \ |
| 486 | printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
| 487 | #define pr_crit_ratelimited(fmt, ...) \ |
| 488 | printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
| 489 | #define pr_err_ratelimited(fmt, ...) \ |
| 490 | printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
| 491 | #define pr_warning_ratelimited(fmt, ...) \ |
| 492 | printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | fc62f2f | 2010-05-24 14:33:08 -0700 | [diff] [blame] | 493 | #define pr_warn_ratelimited pr_warning_ratelimited |
Joe Perches | 8a64f33 | 2009-12-14 18:00:25 -0800 | [diff] [blame] | 494 | #define pr_notice_ratelimited(fmt, ...) \ |
| 495 | printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
| 496 | #define pr_info_ratelimited(fmt, ...) \ |
| 497 | printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 498 | /* no pr_cont_ratelimited, don't do that... */ |
| 499 | /* If you are writing a driver, please use dev_dbg instead */ |
| 500 | #if defined(DEBUG) |
| 501 | #define pr_debug_ratelimited(fmt, ...) \ |
| 502 | printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 503 | #else |
| 504 | #define pr_debug_ratelimited(fmt, ...) \ |
| 505 | ({ if (0) printk_ratelimited(KERN_DEBUG pr_fmt(fmt), \ |
| 506 | ##__VA_ARGS__); 0; }) |
| 507 | #endif |
| 508 | |
| 509 | /* |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 510 | * General tracing related utility functions - trace_printk(), |
Steven Rostedt | 2002c25 | 2009-03-05 10:35:56 -0500 | [diff] [blame] | 511 | * tracing_on/tracing_off and tracing_start()/tracing_stop |
| 512 | * |
| 513 | * Use tracing_on/tracing_off when you want to quickly turn on or off |
| 514 | * tracing. It simply enables or disables the recording of the trace events. |
GeunSik Lim | 156f5a7 | 2009-06-02 15:01:37 +0900 | [diff] [blame] | 515 | * This also corresponds to the user space /sys/kernel/debug/tracing/tracing_on |
Steven Rostedt | 2002c25 | 2009-03-05 10:35:56 -0500 | [diff] [blame] | 516 | * file, which gives a means for the kernel and userspace to interact. |
| 517 | * Place a tracing_off() in the kernel where you want tracing to end. |
| 518 | * From user space, examine the trace, and then echo 1 > tracing_on |
| 519 | * to continue tracing. |
| 520 | * |
| 521 | * tracing_stop/tracing_start has slightly more overhead. It is used |
| 522 | * by things like suspend to ram where disabling the recording of the |
| 523 | * trace is not enough, but tracing must actually stop because things |
| 524 | * like calling smp_processor_id() may crash the system. |
| 525 | * |
| 526 | * Most likely, you want to use tracing_on/tracing_off. |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 527 | */ |
Steven Rostedt | 2002c25 | 2009-03-05 10:35:56 -0500 | [diff] [blame] | 528 | #ifdef CONFIG_RING_BUFFER |
| 529 | void tracing_on(void); |
| 530 | void tracing_off(void); |
| 531 | /* trace_off_permanent stops recording with no way to bring it back */ |
| 532 | void tracing_off_permanent(void); |
| 533 | int tracing_is_on(void); |
| 534 | #else |
| 535 | static inline void tracing_on(void) { } |
| 536 | static inline void tracing_off(void) { } |
| 537 | static inline void tracing_off_permanent(void) { } |
| 538 | static inline int tracing_is_on(void) { return 0; } |
| 539 | #endif |
Frederic Weisbecker | cecbca9 | 2010-04-18 19:08:41 +0200 | [diff] [blame] | 540 | |
| 541 | enum ftrace_dump_mode { |
| 542 | DUMP_NONE, |
| 543 | DUMP_ALL, |
| 544 | DUMP_ORIG, |
| 545 | }; |
| 546 | |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 547 | #ifdef CONFIG_TRACING |
| 548 | extern void tracing_start(void); |
| 549 | extern void tracing_stop(void); |
| 550 | extern void ftrace_off_permanent(void); |
| 551 | |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 552 | static inline void __attribute__ ((format (printf, 1, 2))) |
| 553 | ____trace_printk_check_format(const char *fmt, ...) |
| 554 | { |
| 555 | } |
| 556 | #define __trace_printk_check_format(fmt, args...) \ |
| 557 | do { \ |
| 558 | if (0) \ |
| 559 | ____trace_printk_check_format(fmt, ##args); \ |
| 560 | } while (0) |
| 561 | |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 562 | /** |
| 563 | * trace_printk - printf formatting in the ftrace buffer |
| 564 | * @fmt: the printf format for printing |
| 565 | * |
| 566 | * Note: __trace_printk is an internal function for trace_printk and |
| 567 | * the @ip is passed in via the trace_printk macro. |
| 568 | * |
| 569 | * This function allows a kernel developer to debug fast path sections |
| 570 | * that printk is not appropriate for. By scattering in various |
| 571 | * printk like tracing in the code, a developer can quickly see |
| 572 | * where problems are occurring. |
| 573 | * |
| 574 | * This is intended as a debugging tool for the developer only. |
| 575 | * Please refrain from leaving trace_printks scattered around in |
| 576 | * your code. |
| 577 | */ |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 578 | |
| 579 | #define trace_printk(fmt, args...) \ |
| 580 | do { \ |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 581 | __trace_printk_check_format(fmt, ##args); \ |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 582 | if (__builtin_constant_p(fmt)) { \ |
| 583 | static const char *trace_printk_fmt \ |
| 584 | __attribute__((section("__trace_printk_fmt"))) = \ |
| 585 | __builtin_constant_p(fmt) ? fmt : NULL; \ |
| 586 | \ |
| 587 | __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ |
| 588 | } else \ |
| 589 | __trace_printk(_THIS_IP_, fmt, ##args); \ |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 590 | } while (0) |
| 591 | |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 592 | extern int |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 593 | __trace_bprintk(unsigned long ip, const char *fmt, ...) |
| 594 | __attribute__ ((format (printf, 2, 3))); |
| 595 | |
| 596 | extern int |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 597 | __trace_printk(unsigned long ip, const char *fmt, ...) |
| 598 | __attribute__ ((format (printf, 2, 3))); |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 599 | |
Steven Rostedt | 0388938 | 2009-12-11 09:48:22 -0500 | [diff] [blame] | 600 | extern void trace_dump_stack(void); |
| 601 | |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 602 | /* |
| 603 | * The double __builtin_constant_p is because gcc will give us an error |
| 604 | * if we try to allocate the static variable to fmt if it is not a |
| 605 | * constant. Even with the outer if statement. |
| 606 | */ |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 607 | #define ftrace_vprintk(fmt, vargs) \ |
| 608 | do { \ |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 609 | if (__builtin_constant_p(fmt)) { \ |
| 610 | static const char *trace_printk_fmt \ |
| 611 | __attribute__((section("__trace_printk_fmt"))) = \ |
| 612 | __builtin_constant_p(fmt) ? fmt : NULL; \ |
Ingo Molnar | 7bffc23 | 2009-03-09 10:11:36 +0100 | [diff] [blame] | 613 | \ |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 614 | __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \ |
| 615 | } else \ |
| 616 | __ftrace_vprintk(_THIS_IP_, fmt, vargs); \ |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 617 | } while (0) |
| 618 | |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 619 | extern int |
Frederic Weisbecker | 48ead02 | 2009-03-12 18:24:49 +0100 | [diff] [blame] | 620 | __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap); |
| 621 | |
| 622 | extern int |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 623 | __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 624 | |
Frederic Weisbecker | cecbca9 | 2010-04-18 19:08:41 +0200 | [diff] [blame] | 625 | extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode); |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 626 | #else |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 627 | static inline int |
| 628 | trace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2))); |
| 629 | |
| 630 | static inline void tracing_start(void) { } |
| 631 | static inline void tracing_stop(void) { } |
| 632 | static inline void ftrace_off_permanent(void) { } |
Steven Rostedt | e36c545 | 2009-12-14 15:58:33 -0500 | [diff] [blame] | 633 | static inline void trace_dump_stack(void) { } |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 634 | static inline int |
| 635 | trace_printk(const char *fmt, ...) |
| 636 | { |
| 637 | return 0; |
| 638 | } |
| 639 | static inline int |
| 640 | ftrace_vprintk(const char *fmt, va_list ap) |
| 641 | { |
| 642 | return 0; |
| 643 | } |
Frederic Weisbecker | cecbca9 | 2010-04-18 19:08:41 +0200 | [diff] [blame] | 644 | static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } |
Frederic Weisbecker | 769b044 | 2009-03-06 17:21:49 +0100 | [diff] [blame] | 645 | #endif /* CONFIG_TRACING */ |
Ingo Molnar | 526211b | 2009-03-05 10:28:45 +0100 | [diff] [blame] | 646 | |
| 647 | /* |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 648 | * min()/max()/clamp() macros that also do |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | * strict type-checking.. See the |
| 650 | * "unnecessary" pointer comparison. |
| 651 | */ |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 652 | #define min(x, y) ({ \ |
| 653 | typeof(x) _min1 = (x); \ |
| 654 | typeof(y) _min2 = (y); \ |
| 655 | (void) (&_min1 == &_min2); \ |
| 656 | _min1 < _min2 ? _min1 : _min2; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 658 | #define max(x, y) ({ \ |
| 659 | typeof(x) _max1 = (x); \ |
| 660 | typeof(y) _max2 = (y); \ |
| 661 | (void) (&_max1 == &_max2); \ |
| 662 | _max1 > _max2 ? _max1 : _max2; }) |
| 663 | |
Hagen Paul Pfeifer | f27c85c | 2010-10-26 14:22:21 -0700 | [diff] [blame] | 664 | #define min3(x, y, z) ({ \ |
| 665 | typeof(x) _min1 = (x); \ |
| 666 | typeof(y) _min2 = (y); \ |
| 667 | typeof(z) _min3 = (z); \ |
| 668 | (void) (&_min1 == &_min2); \ |
| 669 | (void) (&_min1 == &_min3); \ |
| 670 | _min1 < _min2 ? (_min1 < _min3 ? _min1 : _min3) : \ |
| 671 | (_min2 < _min3 ? _min2 : _min3); }) |
| 672 | |
| 673 | #define max3(x, y, z) ({ \ |
| 674 | typeof(x) _max1 = (x); \ |
| 675 | typeof(y) _max2 = (y); \ |
| 676 | typeof(z) _max3 = (z); \ |
| 677 | (void) (&_max1 == &_max2); \ |
| 678 | (void) (&_max1 == &_max3); \ |
| 679 | _max1 > _max2 ? (_max1 > _max3 ? _max1 : _max3) : \ |
| 680 | (_max2 > _max3 ? _max2 : _max3); }) |
| 681 | |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 682 | /** |
Martin K. Petersen | c8bf133 | 2010-09-10 20:07:38 +0200 | [diff] [blame] | 683 | * min_not_zero - return the minimum that is _not_ zero, unless both are zero |
| 684 | * @x: value1 |
| 685 | * @y: value2 |
| 686 | */ |
| 687 | #define min_not_zero(x, y) ({ \ |
| 688 | typeof(x) __x = (x); \ |
| 689 | typeof(y) __y = (y); \ |
| 690 | __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); }) |
| 691 | |
| 692 | /** |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 693 | * clamp - return a value clamped to a given range with strict typechecking |
| 694 | * @val: current value |
| 695 | * @min: minimum allowable value |
| 696 | * @max: maximum allowable value |
| 697 | * |
| 698 | * This macro does strict typechecking of min/max to make sure they are of the |
| 699 | * same type as val. See the unnecessary pointer comparisons. |
| 700 | */ |
| 701 | #define clamp(val, min, max) ({ \ |
| 702 | typeof(val) __val = (val); \ |
| 703 | typeof(min) __min = (min); \ |
| 704 | typeof(max) __max = (max); \ |
| 705 | (void) (&__val == &__min); \ |
| 706 | (void) (&__val == &__max); \ |
| 707 | __val = __val < __min ? __min: __val; \ |
| 708 | __val > __max ? __max: __val; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | /* |
| 711 | * ..and if you can't take the strict |
| 712 | * types, you can specify one yourself. |
| 713 | * |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 714 | * Or not use min/max/clamp at all, of course. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | */ |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 716 | #define min_t(type, x, y) ({ \ |
| 717 | type __min1 = (x); \ |
| 718 | type __min2 = (y); \ |
| 719 | __min1 < __min2 ? __min1: __min2; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | |
Harvey Harrison | bdf4bba | 2008-04-30 00:54:55 -0700 | [diff] [blame] | 721 | #define max_t(type, x, y) ({ \ |
| 722 | type __max1 = (x); \ |
| 723 | type __max2 = (y); \ |
| 724 | __max1 > __max2 ? __max1: __max2; }) |
| 725 | |
| 726 | /** |
| 727 | * clamp_t - return a value clamped to a given range using a given type |
| 728 | * @type: the type of variable to use |
| 729 | * @val: current value |
| 730 | * @min: minimum allowable value |
| 731 | * @max: maximum allowable value |
| 732 | * |
| 733 | * This macro does no typechecking and uses temporary variables of type |
| 734 | * 'type' to make all the comparisons. |
| 735 | */ |
| 736 | #define clamp_t(type, val, min, max) ({ \ |
| 737 | type __val = (val); \ |
| 738 | type __min = (min); \ |
| 739 | type __max = (max); \ |
| 740 | __val = __val < __min ? __min: __val; \ |
| 741 | __val > __max ? __max: __val; }) |
| 742 | |
| 743 | /** |
| 744 | * clamp_val - return a value clamped to a given range using val's type |
| 745 | * @val: current value |
| 746 | * @min: minimum allowable value |
| 747 | * @max: maximum allowable value |
| 748 | * |
| 749 | * This macro does no typechecking and uses temporary variables of whatever |
| 750 | * type the input argument 'val' is. This is useful when val is an unsigned |
| 751 | * type and min and max are literals that will otherwise be assigned a signed |
| 752 | * integer type. |
| 753 | */ |
| 754 | #define clamp_val(val, min, max) ({ \ |
| 755 | typeof(val) __val = (val); \ |
| 756 | typeof(val) __min = (min); \ |
| 757 | typeof(val) __max = (max); \ |
| 758 | __val = __val < __min ? __min: __val; \ |
| 759 | __val > __max ? __max: __val; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
Wu Fengguang | 91f68b7 | 2009-01-07 18:09:12 -0800 | [diff] [blame] | 761 | |
| 762 | /* |
| 763 | * swap - swap value of @a and @b |
| 764 | */ |
Peter Zijlstra | ac7b900 | 2009-02-04 15:11:59 -0800 | [diff] [blame] | 765 | #define swap(a, b) \ |
| 766 | do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) |
Wu Fengguang | 91f68b7 | 2009-01-07 18:09:12 -0800 | [diff] [blame] | 767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | /** |
| 769 | * container_of - cast a member of a structure out to the containing structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | * @ptr: the pointer to the member. |
| 771 | * @type: the type of the container struct this is embedded in. |
| 772 | * @member: the name of the member within the struct. |
| 773 | * |
| 774 | */ |
| 775 | #define container_of(ptr, type, member) ({ \ |
Daniel Walker | 78db2ad | 2007-05-12 16:28:35 -0700 | [diff] [blame] | 776 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
| 777 | (type *)( (char *)__mptr - offsetof(type,member) );}) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Kyle McMartin | d4d23ad | 2007-02-10 01:46:00 -0800 | [diff] [blame] | 779 | struct sysinfo; |
| 780 | extern int do_sysinfo(struct sysinfo *info); |
| 781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | #endif /* __KERNEL__ */ |
| 783 | |
| 784 | #define SI_LOAD_SHIFT 16 |
| 785 | struct sysinfo { |
| 786 | long uptime; /* Seconds since boot */ |
| 787 | unsigned long loads[3]; /* 1, 5, and 15 minute load averages */ |
| 788 | unsigned long totalram; /* Total usable main memory size */ |
| 789 | unsigned long freeram; /* Available memory size */ |
| 790 | unsigned long sharedram; /* Amount of shared memory */ |
| 791 | unsigned long bufferram; /* Memory used by buffers */ |
| 792 | unsigned long totalswap; /* Total swap space size */ |
| 793 | unsigned long freeswap; /* swap space still available */ |
| 794 | unsigned short procs; /* Number of current processes */ |
| 795 | unsigned short pad; /* explicit padding for m68k */ |
| 796 | unsigned long totalhigh; /* Total high memory size */ |
| 797 | unsigned long freehigh; /* Available high memory size */ |
| 798 | unsigned int mem_unit; /* Memory unit size in bytes */ |
| 799 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ |
| 800 | }; |
| 801 | |
Nikita Danilov | c0398ee | 2005-10-30 15:03:10 -0800 | [diff] [blame] | 802 | /* Force a compilation error if condition is true */ |
Jan Beulich | 8c87df4 | 2009-09-22 16:43:52 -0700 | [diff] [blame] | 803 | #define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition)) |
| 804 | |
| 805 | /* Force a compilation error if condition is constant and true */ |
| 806 | #define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
Roland Dreier | cc8ef6e | 2010-01-15 17:01:22 -0800 | [diff] [blame] | 808 | /* Force a compilation error if a constant expression is not a power of 2 */ |
| 809 | #define BUILD_BUG_ON_NOT_POWER_OF_2(n) \ |
| 810 | BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0)) |
| 811 | |
Jan Beulich | 4552d5d | 2006-06-26 13:57:28 +0200 | [diff] [blame] | 812 | /* Force a compilation error if condition is true, but also produce a |
| 813 | result (of value 0 and type size_t), so the expression can be used |
| 814 | e.g. in a structure initializer (or where-ever else comma expressions |
| 815 | aren't permitted). */ |
Jan Beulich | 8c87df4 | 2009-09-22 16:43:52 -0700 | [diff] [blame] | 816 | #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) |
| 817 | #define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); })) |
Jan Beulich | 4552d5d | 2006-06-26 13:57:28 +0200 | [diff] [blame] | 818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | /* Trap pasters of __FUNCTION__ at compile-time */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | #define __FUNCTION__ (__func__) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Christoph Lameter | 08e0f6a | 2006-09-27 01:50:06 -0700 | [diff] [blame] | 822 | /* This helps us to avoid #ifdef CONFIG_NUMA */ |
| 823 | #ifdef CONFIG_NUMA |
| 824 | #define NUMA_BUILD 1 |
| 825 | #else |
| 826 | #define NUMA_BUILD 0 |
| 827 | #endif |
| 828 | |
Steven Rostedt | 29e71ab | 2008-08-14 15:45:10 -0400 | [diff] [blame] | 829 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ |
| 830 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
| 831 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD |
| 832 | #endif |
| 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | #endif |