Joonsoo Kim | eefa864b | 2014-12-12 16:55:46 -0800 | [diff] [blame] | 1 | #ifndef __LINUX_PAGE_EXT_H |
| 2 | #define __LINUX_PAGE_EXT_H |
| 3 | |
Joonsoo Kim | 48c96a3 | 2014-12-12 16:56:01 -0800 | [diff] [blame] | 4 | #include <linux/types.h> |
| 5 | #include <linux/stacktrace.h> |
Joonsoo Kim | f2ca0b5 | 2016-07-26 15:23:55 -0700 | [diff] [blame] | 6 | #include <linux/stackdepot.h> |
Joonsoo Kim | 48c96a3 | 2014-12-12 16:56:01 -0800 | [diff] [blame] | 7 | |
Joonsoo Kim | eefa864b | 2014-12-12 16:55:46 -0800 | [diff] [blame] | 8 | struct pglist_data; |
| 9 | struct page_ext_operations { |
| 10 | bool (*need)(void); |
| 11 | void (*init)(void); |
| 12 | }; |
| 13 | |
| 14 | #ifdef CONFIG_PAGE_EXTENSION |
| 15 | |
| 16 | /* |
Joonsoo Kim | e30825f | 2014-12-12 16:55:49 -0800 | [diff] [blame] | 17 | * page_ext->flags bits: |
| 18 | * |
| 19 | * PAGE_EXT_DEBUG_POISON is set for poisoned pages. This is used to |
| 20 | * implement generic debug pagealloc feature. The pages are filled with |
| 21 | * poison patterns and set this flag after free_pages(). The poisoned |
| 22 | * pages are verified whether the patterns are not corrupted and clear |
| 23 | * the flag before alloc_pages(). |
| 24 | */ |
| 25 | |
| 26 | enum page_ext_flags { |
| 27 | PAGE_EXT_DEBUG_POISON, /* Page is poisoned */ |
| 28 | PAGE_EXT_DEBUG_GUARD, |
Joonsoo Kim | 48c96a3 | 2014-12-12 16:56:01 -0800 | [diff] [blame] | 29 | PAGE_EXT_OWNER, |
Vladimir Davydov | 33c3fc7 | 2015-09-09 15:35:45 -0700 | [diff] [blame] | 30 | #if defined(CONFIG_IDLE_PAGE_TRACKING) && !defined(CONFIG_64BIT) |
| 31 | PAGE_EXT_YOUNG, |
| 32 | PAGE_EXT_IDLE, |
| 33 | #endif |
Joonsoo Kim | e30825f | 2014-12-12 16:55:49 -0800 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | /* |
Joonsoo Kim | eefa864b | 2014-12-12 16:55:46 -0800 | [diff] [blame] | 37 | * Page Extension can be considered as an extended mem_map. |
| 38 | * A page_ext page is associated with every page descriptor. The |
| 39 | * page_ext helps us add more information about the page. |
| 40 | * All page_ext are allocated at boot or memory hotplug event, |
| 41 | * then the page_ext for pfn always exists. |
| 42 | */ |
| 43 | struct page_ext { |
| 44 | unsigned long flags; |
Joonsoo Kim | 48c96a3 | 2014-12-12 16:56:01 -0800 | [diff] [blame] | 45 | #ifdef CONFIG_PAGE_OWNER |
| 46 | unsigned int order; |
| 47 | gfp_t gfp_mask; |
Vlastimil Babka | 7cd12b4 | 2016-03-15 14:56:18 -0700 | [diff] [blame] | 48 | int last_migrate_reason; |
Joonsoo Kim | f2ca0b5 | 2016-07-26 15:23:55 -0700 | [diff] [blame] | 49 | depot_stack_handle_t handle; |
Joonsoo Kim | 48c96a3 | 2014-12-12 16:56:01 -0800 | [diff] [blame] | 50 | #endif |
Joonsoo Kim | eefa864b | 2014-12-12 16:55:46 -0800 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | extern void pgdat_page_ext_init(struct pglist_data *pgdat); |
| 54 | |
| 55 | #ifdef CONFIG_SPARSEMEM |
| 56 | static inline void page_ext_init_flatmem(void) |
| 57 | { |
| 58 | } |
| 59 | extern void page_ext_init(void); |
| 60 | #else |
| 61 | extern void page_ext_init_flatmem(void); |
| 62 | static inline void page_ext_init(void) |
| 63 | { |
| 64 | } |
| 65 | #endif |
| 66 | |
| 67 | struct page_ext *lookup_page_ext(struct page *page); |
| 68 | |
| 69 | #else /* !CONFIG_PAGE_EXTENSION */ |
| 70 | struct page_ext; |
| 71 | |
| 72 | static inline void pgdat_page_ext_init(struct pglist_data *pgdat) |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | static inline struct page_ext *lookup_page_ext(struct page *page) |
| 77 | { |
| 78 | return NULL; |
| 79 | } |
| 80 | |
| 81 | static inline void page_ext_init(void) |
| 82 | { |
| 83 | } |
| 84 | |
| 85 | static inline void page_ext_init_flatmem(void) |
| 86 | { |
| 87 | } |
| 88 | #endif /* CONFIG_PAGE_EXTENSION */ |
| 89 | #endif /* __LINUX_PAGE_EXT_H */ |