diff options
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r-- | include/linux/mm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 26c7124b841a..3b3e1341163f 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -1171,12 +1171,18 @@ static inline void enable_debug_pagealloc(void) | |||
1171 | { | 1171 | { |
1172 | debug_pagealloc_enabled = 1; | 1172 | debug_pagealloc_enabled = 1; |
1173 | } | 1173 | } |
1174 | #ifdef CONFIG_HIBERNATION | ||
1175 | extern bool kernel_page_present(struct page *page); | ||
1176 | #endif /* CONFIG_HIBERNATION */ | ||
1174 | #else | 1177 | #else |
1175 | static inline void | 1178 | static inline void |
1176 | kernel_map_pages(struct page *page, int numpages, int enable) {} | 1179 | kernel_map_pages(struct page *page, int numpages, int enable) {} |
1177 | static inline void enable_debug_pagealloc(void) | 1180 | static inline void enable_debug_pagealloc(void) |
1178 | { | 1181 | { |
1179 | } | 1182 | } |
1183 | #ifdef CONFIG_HIBERNATION | ||
1184 | static inline bool kernel_page_present(struct page *page) { return true; } | ||
1185 | #endif /* CONFIG_HIBERNATION */ | ||
1180 | #endif | 1186 | #endif |
1181 | 1187 | ||
1182 | extern struct vm_area_struct *get_gate_vma(struct task_struct *tsk); | 1188 | extern struct vm_area_struct *get_gate_vma(struct task_struct *tsk); |