diff options
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 57dac7022b63..5a9d9059520b 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -600,6 +600,13 @@ struct sysinfo { | |||
600 | #define NUMA_BUILD 0 | 600 | #define NUMA_BUILD 0 |
601 | #endif | 601 | #endif |
602 | 602 | ||
603 | /* This helps us avoid #ifdef CONFIG_COMPACTION */ | ||
604 | #ifdef CONFIG_COMPACTION | ||
605 | #define COMPACTION_BUILD 1 | ||
606 | #else | ||
607 | #define COMPACTION_BUILD 0 | ||
608 | #endif | ||
609 | |||
603 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ | 610 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ |
604 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD | 611 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
605 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD | 612 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD |