diff options
Diffstat (limited to 'include/linux/kernel.h')
| -rw-r--r-- | include/linux/kernel.h | 309 |
1 files changed, 56 insertions, 253 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 450092c1e35f..2fe6e84894a4 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -17,13 +17,11 @@ | |||
| 17 | #include <linux/bitops.h> | 17 | #include <linux/bitops.h> |
| 18 | #include <linux/log2.h> | 18 | #include <linux/log2.h> |
| 19 | #include <linux/typecheck.h> | 19 | #include <linux/typecheck.h> |
| 20 | #include <linux/printk.h> | ||
| 20 | #include <linux/dynamic_debug.h> | 21 | #include <linux/dynamic_debug.h> |
| 21 | #include <asm/byteorder.h> | 22 | #include <asm/byteorder.h> |
| 22 | #include <asm/bug.h> | 23 | #include <asm/bug.h> |
| 23 | 24 | ||
| 24 | extern const char linux_banner[]; | ||
| 25 | extern const char linux_proc_banner[]; | ||
| 26 | |||
| 27 | #define USHRT_MAX ((u16)(~0U)) | 25 | #define USHRT_MAX ((u16)(~0U)) |
| 28 | #define SHRT_MAX ((s16)(USHRT_MAX>>1)) | 26 | #define SHRT_MAX ((s16)(USHRT_MAX>>1)) |
| 29 | #define SHRT_MIN ((s16)(-SHRT_MAX - 1)) | 27 | #define SHRT_MIN ((s16)(-SHRT_MAX - 1)) |
| @@ -58,9 +56,11 @@ extern const char linux_proc_banner[]; | |||
| 58 | 56 | ||
| 59 | #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) | 57 | #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) |
| 60 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) | 58 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) |
| 59 | |||
| 60 | /* The `const' in roundup() prevents gcc-3.3 from calling __divdi3 */ | ||
| 61 | #define roundup(x, y) ( \ | 61 | #define roundup(x, y) ( \ |
| 62 | { \ | 62 | { \ |
| 63 | typeof(y) __y = y; \ | 63 | const typeof(y) __y = y; \ |
| 64 | (((x) + (__y - 1)) / __y) * __y; \ | 64 | (((x) + (__y - 1)) / __y) * __y; \ |
| 65 | } \ | 65 | } \ |
| 66 | ) | 66 | ) |
| @@ -110,31 +110,6 @@ extern const char linux_proc_banner[]; | |||
| 110 | */ | 110 | */ |
| 111 | #define lower_32_bits(n) ((u32)(n)) | 111 | #define lower_32_bits(n) ((u32)(n)) |
| 112 | 112 | ||
| 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 | |||
| 122 | /* Use the default kernel loglevel */ | ||
| 123 | #define KERN_DEFAULT "<d>" | ||
| 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 | */ | ||
| 129 | #define KERN_CONT "<c>" | ||
| 130 | |||
| 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; | 113 | struct completion; |
| 139 | struct pt_regs; | 114 | struct pt_regs; |
| 140 | struct user; | 115 | struct user; |
| @@ -168,9 +143,22 @@ extern int _cond_resched(void); | |||
| 168 | 143 | ||
| 169 | #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) | 144 | #define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0) |
| 170 | 145 | ||
| 171 | #define abs(x) ({ \ | 146 | /* |
| 172 | long __x = (x); \ | 147 | * abs() handles unsigned and signed longs, ints, shorts and chars. For all |
| 173 | (__x < 0) ? -__x : __x; \ | 148 | * input types abs() returns a signed long. |
| 149 | * abs() should not be used for 64-bit types (s64, u64, long long) - use abs64() | ||
| 150 | * for those. | ||
| 151 | */ | ||
| 152 | #define abs(x) ({ \ | ||
| 153 | long ret; \ | ||
| 154 | if (sizeof(x) == sizeof(long)) { \ | ||
| 155 | long __x = (x); \ | ||
| 156 | ret = (__x < 0) ? -__x : __x; \ | ||
| 157 | } else { \ | ||
| 158 | int __x = (x); \ | ||
| 159 | ret = (__x < 0) ? -__x : __x; \ | ||
| 160 | } \ | ||
| 161 | ret; \ | ||
| 174 | }) | 162 | }) |
| 175 | 163 | ||
| 176 | #define abs64(x) ({ \ | 164 | #define abs64(x) ({ \ |
| @@ -187,11 +175,6 @@ static inline void might_fault(void) | |||
| 187 | } | 175 | } |
| 188 | #endif | 176 | #endif |
| 189 | 177 | ||
| 190 | struct va_format { | ||
| 191 | const char *fmt; | ||
| 192 | va_list *va; | ||
| 193 | }; | ||
| 194 | |||
| 195 | extern struct atomic_notifier_head panic_notifier_list; | 178 | extern struct atomic_notifier_head panic_notifier_list; |
| 196 | extern long (*panic_blink)(int state); | 179 | extern long (*panic_blink)(int state); |
| 197 | NORET_TYPE void panic(const char * fmt, ...) | 180 | NORET_TYPE void panic(const char * fmt, ...) |
| @@ -245,114 +228,8 @@ extern int func_ptr_is_kernel_text(void *ptr); | |||
| 245 | struct pid; | 228 | struct pid; |
| 246 | extern struct pid *session_of_pgrp(struct pid *pgrp); | 229 | extern struct pid *session_of_pgrp(struct pid *pgrp); |
| 247 | 230 | ||
| 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 | |||
| 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 | |||
| 279 | #ifdef CONFIG_PRINTK | ||
| 280 | asmlinkage int vprintk(const char *fmt, va_list args) | ||
| 281 | __attribute__ ((format (printf, 1, 0))); | ||
| 282 | asmlinkage int printk(const char * fmt, ...) | ||
| 283 | __attribute__ ((format (printf, 1, 2))) __cold; | ||
| 284 | |||
| 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 | */ | ||
| 290 | extern int __printk_ratelimit(const char *func); | ||
| 291 | #define printk_ratelimit() __printk_ratelimit(__func__) | ||
| 292 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, | ||
| 293 | unsigned int interval_msec); | ||
| 294 | |||
| 295 | extern int printk_delay_msec; | ||
| 296 | |||
| 297 | /* | ||
| 298 | * Print a one-time message (analogous to WARN_ONCE() et al): | ||
| 299 | */ | ||
| 300 | #define printk_once(x...) ({ \ | ||
| 301 | static bool __print_once; \ | ||
| 302 | \ | ||
| 303 | if (!__print_once) { \ | ||
| 304 | __print_once = true; \ | ||
| 305 | printk(x); \ | ||
| 306 | } \ | ||
| 307 | }) | ||
| 308 | |||
| 309 | void log_buf_kexec_setup(void); | ||
| 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))); | ||
| 316 | static inline int __cold printk(const char *s, ...) { return 0; } | ||
| 317 | static inline int printk_ratelimit(void) { return 0; } | ||
| 318 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \ | ||
| 319 | unsigned int interval_msec) \ | ||
| 320 | { return false; } | ||
| 321 | |||
| 322 | /* No effect, but we still get type checking even in the !PRINTK case: */ | ||
| 323 | #define printk_once(x...) printk(x) | ||
| 324 | |||
| 325 | static inline void log_buf_kexec_setup(void) | ||
| 326 | { | ||
| 327 | } | ||
| 328 | #endif | ||
| 329 | |||
| 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 | |||
| 337 | extern int printk_needs_cpu(int cpu); | ||
| 338 | extern void printk_tick(void); | ||
| 339 | |||
| 340 | extern void asmlinkage __attribute__((format(printf, 1, 2))) | ||
| 341 | early_printk(const char *fmt, ...); | ||
| 342 | |||
| 343 | unsigned long int_sqrt(unsigned long); | 231 | unsigned long int_sqrt(unsigned long); |
| 344 | 232 | ||
| 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); | 233 | extern void bust_spinlocks(int yes); |
| 357 | extern void wake_up_klogd(void); | 234 | extern void wake_up_klogd(void); |
| 358 | extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ | 235 | extern int oops_in_progress; /* If set, an oops, panic(), BUG() or die() is in progress */ |
| @@ -366,6 +243,8 @@ extern int test_taint(unsigned flag); | |||
| 366 | extern unsigned long get_taint(void); | 243 | extern unsigned long get_taint(void); |
| 367 | extern int root_mountflags; | 244 | extern int root_mountflags; |
| 368 | 245 | ||
| 246 | extern bool early_boot_irqs_disabled; | ||
| 247 | |||
| 369 | /* Values used for system_state */ | 248 | /* Values used for system_state */ |
| 370 | extern enum system_states { | 249 | extern enum system_states { |
| 371 | SYSTEM_BOOTING, | 250 | SYSTEM_BOOTING, |
| @@ -389,22 +268,6 @@ extern enum system_states { | |||
| 389 | #define TAINT_CRAP 10 | 268 | #define TAINT_CRAP 10 |
| 390 | #define TAINT_FIRMWARE_WORKAROUND 11 | 269 | #define TAINT_FIRMWARE_WORKAROUND 11 |
| 391 | 270 | ||
| 392 | extern void dump_stack(void) __cold; | ||
| 393 | |||
| 394 | enum { | ||
| 395 | DUMP_PREFIX_NONE, | ||
| 396 | DUMP_PREFIX_ADDRESS, | ||
| 397 | DUMP_PREFIX_OFFSET | ||
| 398 | }; | ||
| 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, | ||
| 404 | const void *buf, size_t len, bool ascii); | ||
| 405 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | ||
| 406 | const void *buf, size_t len); | ||
| 407 | |||
| 408 | extern const char hex_asc[]; | 271 | extern const char hex_asc[]; |
| 409 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] | 272 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] |
| 410 | #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] | 273 | #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] |
| @@ -417,94 +280,7 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
| 417 | } | 280 | } |
| 418 | 281 | ||
| 419 | extern int hex_to_bin(char ch); | 282 | extern int hex_to_bin(char ch); |
| 420 | 283 | extern void hex2bin(u8 *dst, const char *src, size_t count); | |
| 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__) | ||
| 435 | #define pr_warn pr_warning | ||
| 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__) | ||
| 440 | #define pr_cont(fmt, ...) \ | ||
| 441 | printk(KERN_CONT fmt, ##__VA_ARGS__) | ||
| 442 | |||
| 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 | |||
| 452 | /* If you are writing a driver, please use dev_dbg instead */ | ||
| 453 | #if defined(DEBUG) | ||
| 454 | #define pr_debug(fmt, ...) \ | ||
| 455 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) | ||
| 456 | #elif defined(CONFIG_DYNAMIC_DEBUG) | ||
| 457 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ | ||
| 458 | #define pr_debug(fmt, ...) \ | ||
| 459 | dynamic_pr_debug(fmt, ##__VA_ARGS__) | ||
| 460 | #else | ||
| 461 | #define pr_debug(fmt, ...) \ | ||
| 462 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) | ||
| 463 | #endif | ||
| 464 | |||
| 465 | /* | ||
| 466 | * ratelimited messages with local ratelimit_state, | ||
| 467 | * no local ratelimit_state used in the !PRINTK case | ||
| 468 | */ | ||
| 469 | #ifdef CONFIG_PRINTK | ||
| 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__); \ | ||
| 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__) | ||
| 493 | #define pr_warn_ratelimited pr_warning_ratelimited | ||
| 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 | 284 | ||
| 509 | /* | 285 | /* |
| 510 | * General tracing related utility functions - trace_printk(), | 286 | * General tracing related utility functions - trace_printk(), |
| @@ -799,12 +575,6 @@ struct sysinfo { | |||
| 799 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ | 575 | char _f[20-2*sizeof(long)-sizeof(int)]; /* Padding: libc5 uses this.. */ |
| 800 | }; | 576 | }; |
| 801 | 577 | ||
| 802 | /* Force a compilation error if condition is true */ | ||
| 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)])) | ||
| 807 | |||
| 808 | /* Force a compilation error if a constant expression is not a power of 2 */ | 578 | /* Force a compilation error if a constant expression is not a power of 2 */ |
| 809 | #define BUILD_BUG_ON_NOT_POWER_OF_2(n) \ | 579 | #define BUILD_BUG_ON_NOT_POWER_OF_2(n) \ |
| 810 | BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0)) | 580 | BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0)) |
| @@ -816,6 +586,32 @@ struct sysinfo { | |||
| 816 | #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) | 586 | #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) |
| 817 | #define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); })) | 587 | #define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); })) |
| 818 | 588 | ||
| 589 | /** | ||
| 590 | * BUILD_BUG_ON - break compile if a condition is true. | ||
| 591 | * @condition: the condition which the compiler should know is false. | ||
| 592 | * | ||
| 593 | * If you have some code which relies on certain constants being equal, or | ||
| 594 | * other compile-time-evaluated condition, you should use BUILD_BUG_ON to | ||
| 595 | * detect if someone changes it. | ||
| 596 | * | ||
| 597 | * The implementation uses gcc's reluctance to create a negative array, but | ||
| 598 | * gcc (as of 4.4) only emits that error for obvious cases (eg. not arguments | ||
| 599 | * to inline functions). So as a fallback we use the optimizer; if it can't | ||
| 600 | * prove the condition is false, it will cause a link error on the undefined | ||
| 601 | * "__build_bug_on_failed". This error message can be harder to track down | ||
| 602 | * though, hence the two different methods. | ||
| 603 | */ | ||
| 604 | #ifndef __OPTIMIZE__ | ||
| 605 | #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) | ||
| 606 | #else | ||
| 607 | extern int __build_bug_on_failed; | ||
| 608 | #define BUILD_BUG_ON(condition) \ | ||
| 609 | do { \ | ||
| 610 | ((void)sizeof(char[1 - 2*!!(condition)])); \ | ||
| 611 | if (condition) __build_bug_on_failed = 1; \ | ||
| 612 | } while(0) | ||
| 613 | #endif | ||
| 614 | |||
| 819 | /* Trap pasters of __FUNCTION__ at compile-time */ | 615 | /* Trap pasters of __FUNCTION__ at compile-time */ |
| 820 | #define __FUNCTION__ (__func__) | 616 | #define __FUNCTION__ (__func__) |
| 821 | 617 | ||
| @@ -826,6 +622,13 @@ struct sysinfo { | |||
| 826 | #define NUMA_BUILD 0 | 622 | #define NUMA_BUILD 0 |
| 827 | #endif | 623 | #endif |
| 828 | 624 | ||
| 625 | /* This helps us avoid #ifdef CONFIG_COMPACTION */ | ||
| 626 | #ifdef CONFIG_COMPACTION | ||
| 627 | #define COMPACTION_BUILD 1 | ||
| 628 | #else | ||
| 629 | #define COMPACTION_BUILD 0 | ||
| 630 | #endif | ||
| 631 | |||
| 829 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ | 632 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ |
| 830 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD | 633 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
| 831 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD | 634 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD |
