blob: 61c0f05f90694701653d206009a79635f7b1f655 [file] [log] [blame]
Joonsoo Kimeefa8642014-12-12 16:55:46 -08001#ifndef __LINUX_PAGE_EXT_H
2#define __LINUX_PAGE_EXT_H
3
4struct pglist_data;
5struct page_ext_operations {
6 bool (*need)(void);
7 void (*init)(void);
8};
9
10#ifdef CONFIG_PAGE_EXTENSION
11
12/*
Joonsoo Kime30825f2014-12-12 16:55:49 -080013 * page_ext->flags bits:
14 *
15 * PAGE_EXT_DEBUG_POISON is set for poisoned pages. This is used to
16 * implement generic debug pagealloc feature. The pages are filled with
17 * poison patterns and set this flag after free_pages(). The poisoned
18 * pages are verified whether the patterns are not corrupted and clear
19 * the flag before alloc_pages().
20 */
21
22enum page_ext_flags {
23 PAGE_EXT_DEBUG_POISON, /* Page is poisoned */
24 PAGE_EXT_DEBUG_GUARD,
25};
26
27/*
Joonsoo Kimeefa8642014-12-12 16:55:46 -080028 * Page Extension can be considered as an extended mem_map.
29 * A page_ext page is associated with every page descriptor. The
30 * page_ext helps us add more information about the page.
31 * All page_ext are allocated at boot or memory hotplug event,
32 * then the page_ext for pfn always exists.
33 */
34struct page_ext {
35 unsigned long flags;
36};
37
38extern void pgdat_page_ext_init(struct pglist_data *pgdat);
39
40#ifdef CONFIG_SPARSEMEM
41static inline void page_ext_init_flatmem(void)
42{
43}
44extern void page_ext_init(void);
45#else
46extern void page_ext_init_flatmem(void);
47static inline void page_ext_init(void)
48{
49}
50#endif
51
52struct page_ext *lookup_page_ext(struct page *page);
53
54#else /* !CONFIG_PAGE_EXTENSION */
55struct page_ext;
56
57static inline void pgdat_page_ext_init(struct pglist_data *pgdat)
58{
59}
60
61static inline struct page_ext *lookup_page_ext(struct page *page)
62{
63 return NULL;
64}
65
66static inline void page_ext_init(void)
67{
68}
69
70static inline void page_ext_init_flatmem(void)
71{
72}
73#endif /* CONFIG_PAGE_EXTENSION */
74#endif /* __LINUX_PAGE_EXT_H */