Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / include / linux / page_ext.h
blobca5461efae2f1834a83d7b17289fdb3fecf15be6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_PAGE_EXT_H
3 #define __LINUX_PAGE_EXT_H
5 #include <linux/types.h>
6 #include <linux/stacktrace.h>
7 #include <linux/stackdepot.h>
9 struct pglist_data;
10 struct page_ext_operations {
11 size_t offset;
12 size_t size;
13 bool (*need)(void);
14 void (*init)(void);
17 #ifdef CONFIG_PAGE_EXTENSION
20 * page_ext->flags bits:
22 * PAGE_EXT_DEBUG_POISON is set for poisoned pages. This is used to
23 * implement generic debug pagealloc feature. The pages are filled with
24 * poison patterns and set this flag after free_pages(). The poisoned
25 * pages are verified whether the patterns are not corrupted and clear
26 * the flag before alloc_pages().
29 enum page_ext_flags {
30 PAGE_EXT_DEBUG_POISON, /* Page is poisoned */
31 PAGE_EXT_DEBUG_GUARD,
32 PAGE_EXT_OWNER,
33 #if defined(CONFIG_IDLE_PAGE_TRACKING) && !defined(CONFIG_64BIT)
34 PAGE_EXT_YOUNG,
35 PAGE_EXT_IDLE,
36 #endif
40 * Page Extension can be considered as an extended mem_map.
41 * A page_ext page is associated with every page descriptor. The
42 * page_ext helps us add more information about the page.
43 * All page_ext are allocated at boot or memory hotplug event,
44 * then the page_ext for pfn always exists.
46 struct page_ext {
47 unsigned long flags;
50 extern void pgdat_page_ext_init(struct pglist_data *pgdat);
52 #ifdef CONFIG_SPARSEMEM
53 static inline void page_ext_init_flatmem(void)
56 extern void page_ext_init(void);
57 #else
58 extern void page_ext_init_flatmem(void);
59 static inline void page_ext_init(void)
62 #endif
64 struct page_ext *lookup_page_ext(struct page *page);
66 #else /* !CONFIG_PAGE_EXTENSION */
67 struct page_ext;
69 static inline void pgdat_page_ext_init(struct pglist_data *pgdat)
73 static inline struct page_ext *lookup_page_ext(struct page *page)
75 return NULL;
78 static inline void page_ext_init(void)
82 static inline void page_ext_init_flatmem(void)
85 #endif /* CONFIG_PAGE_EXTENSION */
86 #endif /* __LINUX_PAGE_EXT_H */