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>
10 struct page_ext_operations {
17 #ifdef CONFIG_PAGE_EXTENSION
21 PAGE_EXT_OWNER_ALLOCATED,
22 #if defined(CONFIG_PAGE_IDLE_FLAG) && !defined(CONFIG_64BIT)
29 * Page Extension can be considered as an extended mem_map.
30 * A page_ext page is associated with every page descriptor. The
31 * page_ext helps us add more information about the page.
32 * All page_ext are allocated at boot or memory hotplug event,
33 * then the page_ext for pfn always exists.
39 extern unsigned long page_ext_size;
40 extern void pgdat_page_ext_init(struct pglist_data *pgdat);
42 #ifdef CONFIG_SPARSEMEM
43 static inline void page_ext_init_flatmem(void)
46 extern void page_ext_init(void);
47 static inline void page_ext_init_flatmem_late(void)
51 extern void page_ext_init_flatmem(void);
52 extern void page_ext_init_flatmem_late(void);
53 static inline void page_ext_init(void)
58 struct page_ext *lookup_page_ext(const struct page *page);
60 static inline struct page_ext *page_ext_next(struct page_ext *curr)
63 next += page_ext_size;
67 #else /* !CONFIG_PAGE_EXTENSION */
70 static inline void pgdat_page_ext_init(struct pglist_data *pgdat)
74 static inline struct page_ext *lookup_page_ext(const struct page *page)
79 static inline void page_ext_init(void)
83 static inline void page_ext_init_flatmem_late(void)
87 static inline void page_ext_init_flatmem(void)
90 #endif /* CONFIG_PAGE_EXTENSION */
91 #endif /* __LINUX_PAGE_EXT_H */