blob: 682fd465df060c0ac2cde1f67b7b6c11090dd17f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Joonsoo Kimeefa864b2014-12-12 16:55:46 -08002#ifndef __LINUX_PAGE_EXT_H
3#define __LINUX_PAGE_EXT_H
4
Joonsoo Kim48c96a32014-12-12 16:56:01 -08005#include <linux/types.h>
6#include <linux/stacktrace.h>
Joonsoo Kimf2ca0b52016-07-26 15:23:55 -07007#include <linux/stackdepot.h>
Joonsoo Kim48c96a32014-12-12 16:56:01 -08008
Joonsoo Kimeefa864b2014-12-12 16:55:46 -08009struct pglist_data;
10struct page_ext_operations {
Joonsoo Kim980ac162016-10-07 16:58:27 -070011 size_t offset;
12 size_t size;
Joonsoo Kimeefa864b2014-12-12 16:55:46 -080013 bool (*need)(void);
14 void (*init)(void);
15};
16
17#ifdef CONFIG_PAGE_EXTENSION
18
Joonsoo Kime30825f2014-12-12 16:55:49 -080019enum page_ext_flags {
Joonsoo Kim48c96a32014-12-12 16:56:01 -080020 PAGE_EXT_OWNER,
Vlastimil Babka373891672019-09-23 15:34:39 -070021 PAGE_EXT_OWNER_ACTIVE,
Vladimir Davydov33c3fc72015-09-09 15:35:45 -070022#if defined(CONFIG_IDLE_PAGE_TRACKING) && !defined(CONFIG_64BIT)
23 PAGE_EXT_YOUNG,
24 PAGE_EXT_IDLE,
25#endif
Joonsoo Kime30825f2014-12-12 16:55:49 -080026};
27
28/*
Joonsoo Kimeefa864b2014-12-12 16:55:46 -080029 * 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.
34 */
35struct page_ext {
36 unsigned long flags;
Joonsoo Kimeefa864b2014-12-12 16:55:46 -080037};
38
39extern void pgdat_page_ext_init(struct pglist_data *pgdat);
40
41#ifdef CONFIG_SPARSEMEM
42static inline void page_ext_init_flatmem(void)
43{
44}
45extern void page_ext_init(void);
46#else
47extern void page_ext_init_flatmem(void);
48static inline void page_ext_init(void)
49{
50}
51#endif
52
Kirill A. Shutemov10ed6342018-08-17 15:45:15 -070053struct page_ext *lookup_page_ext(const struct page *page);
Joonsoo Kimeefa864b2014-12-12 16:55:46 -080054
55#else /* !CONFIG_PAGE_EXTENSION */
56struct page_ext;
57
58static inline void pgdat_page_ext_init(struct pglist_data *pgdat)
59{
60}
61
Kirill A. Shutemov10ed6342018-08-17 15:45:15 -070062static inline struct page_ext *lookup_page_ext(const struct page *page)
Joonsoo Kimeefa864b2014-12-12 16:55:46 -080063{
64 return NULL;
65}
66
67static inline void page_ext_init(void)
68{
69}
70
71static inline void page_ext_init_flatmem(void)
72{
73}
74#endif /* CONFIG_PAGE_EXTENSION */
75#endif /* __LINUX_PAGE_EXT_H */