xref: /linux/Documentation/mm/arch_pgtable_helpers.rst (revision 8a7c601e14576a22c2bbf7f67455ccf3f3d2737f)
1.. SPDX-License-Identifier: GPL-2.0
2
3===============================
4Architecture Page Table Helpers
5===============================
6
7Generic MM expects architectures (with MMU) to provide helpers to create, access
8and modify page table entries at various level for different memory functions.
9These page table helpers need to conform to a common semantics across platforms.
10Following tables describe the expected semantics which can also be tested during
11boot via CONFIG_DEBUG_VM_PGTABLE option. All future changes in here or the debug
12test need to be in sync.
13
14
15PTE Page Table Helpers
16======================
17
18+---------------------------+--------------------------------------------------+
19| pte_same                  | Tests whether both PTE entries are the same      |
20+---------------------------+--------------------------------------------------+
21| pte_present               | Tests a valid mapped PTE                         |
22+---------------------------+--------------------------------------------------+
23| pte_young                 | Tests a young PTE                                |
24+---------------------------+--------------------------------------------------+
25| pte_dirty                 | Tests a dirty PTE                                |
26+---------------------------+--------------------------------------------------+
27| pte_write                 | Tests a writable PTE                             |
28+---------------------------+--------------------------------------------------+
29| pte_special               | Tests a special PTE                              |
30+---------------------------+--------------------------------------------------+
31| pte_protnone              | Tests a PROT_NONE PTE                            |
32+---------------------------+--------------------------------------------------+
33| pte_soft_dirty            | Tests a soft dirty PTE                           |
34+---------------------------+--------------------------------------------------+
35| pte_swp_soft_dirty        | Tests a soft dirty swapped PTE                   |
36+---------------------------+--------------------------------------------------+
37| pte_mkyoung               | Creates a young PTE                              |
38+---------------------------+--------------------------------------------------+
39| pte_mkold                 | Creates an old PTE                               |
40+---------------------------+--------------------------------------------------+
41| pte_mkdirty               | Creates a dirty PTE                              |
42+---------------------------+--------------------------------------------------+
43| pte_mkclean               | Creates a clean PTE                              |
44+---------------------------+--------------------------------------------------+
45| pte_mkwrite               | Creates a writable PTE of the type specified by  |
46|                           | the VMA.                                         |
47+---------------------------+--------------------------------------------------+
48| pte_mkwrite_novma         | Creates a writable PTE, of the conventional type |
49|                           | of writable.                                     |
50+---------------------------+--------------------------------------------------+
51| pte_wrprotect             | Creates a write protected PTE                    |
52+---------------------------+--------------------------------------------------+
53| pte_mkspecial             | Creates a special PTE                            |
54+---------------------------+--------------------------------------------------+
55| pte_mksoft_dirty          | Creates a soft dirty PTE                         |
56+---------------------------+--------------------------------------------------+
57| pte_clear_soft_dirty      | Clears a soft dirty PTE                          |
58+---------------------------+--------------------------------------------------+
59| pte_swp_mksoft_dirty      | Creates a soft dirty swapped PTE                 |
60+---------------------------+--------------------------------------------------+
61| pte_swp_clear_soft_dirty  | Clears a soft dirty swapped PTE                  |
62+---------------------------+--------------------------------------------------+
63| pte_mknotpresent          | Invalidates a mapped PTE                         |
64+---------------------------+--------------------------------------------------+
65| ptep_clear                | Clears a PTE                                     |
66+---------------------------+--------------------------------------------------+
67| ptep_get_and_clear        | Clears and returns PTE                           |
68+---------------------------+--------------------------------------------------+
69| ptep_get_and_clear_full   | Clears and returns PTE (batched PTE unmap)       |
70+---------------------------+--------------------------------------------------+
71| ptep_test_and_clear_young | Clears young from a PTE                          |
72+---------------------------+--------------------------------------------------+
73| ptep_set_wrprotect        | Converts into a write protected PTE              |
74+---------------------------+--------------------------------------------------+
75| ptep_set_access_flags     | Converts into a more permissive PTE              |
76+---------------------------+--------------------------------------------------+
77
78
79PMD Page Table Helpers
80======================
81
82+---------------------------+--------------------------------------------------+
83| pmd_same                  | Tests whether both PMD entries are the same      |
84+---------------------------+--------------------------------------------------+
85| pmd_bad                   | Tests a non-table mapped PMD                     |
86+---------------------------+--------------------------------------------------+
87| pmd_leaf                  | Tests a leaf mapped PMD                          |
88+---------------------------+--------------------------------------------------+
89| pmd_trans_huge            | Tests a Transparent Huge Page (THP) at PMD       |
90+---------------------------+--------------------------------------------------+
91| pmd_present               | Tests whether pmd_page() points to valid memory  |
92+---------------------------+--------------------------------------------------+
93| pmd_young                 | Tests a young PMD                                |
94+---------------------------+--------------------------------------------------+
95| pmd_dirty                 | Tests a dirty PMD                                |
96+---------------------------+--------------------------------------------------+
97| pmd_write                 | Tests a writable PMD                             |
98+---------------------------+--------------------------------------------------+
99| pmd_special               | Tests a special PMD                              |
100+---------------------------+--------------------------------------------------+
101| pmd_protnone              | Tests a PROT_NONE PMD                            |
102+---------------------------+--------------------------------------------------+
103| pmd_soft_dirty            | Tests a soft dirty PMD                           |
104+---------------------------+--------------------------------------------------+
105| pmd_swp_soft_dirty        | Tests a soft dirty swapped PMD                   |
106+---------------------------+--------------------------------------------------+
107| pmd_mkyoung               | Creates a young PMD                              |
108+---------------------------+--------------------------------------------------+
109| pmd_mkold                 | Creates an old PMD                               |
110+---------------------------+--------------------------------------------------+
111| pmd_mkdirty               | Creates a dirty PMD                              |
112+---------------------------+--------------------------------------------------+
113| pmd_mkclean               | Creates a clean PMD                              |
114+---------------------------+--------------------------------------------------+
115| pmd_mkwrite               | Creates a writable PMD of the type specified by  |
116|                           | the VMA.                                         |
117+---------------------------+--------------------------------------------------+
118| pmd_mkwrite_novma         | Creates a writable PMD, of the conventional type |
119|                           | of writable.                                     |
120+---------------------------+--------------------------------------------------+
121| pmd_wrprotect             | Creates a write protected PMD                    |
122+---------------------------+--------------------------------------------------+
123| pmd_mkspecial             | Creates a special PMD                            |
124+---------------------------+--------------------------------------------------+
125| pmd_mksoft_dirty          | Creates a soft dirty PMD                         |
126+---------------------------+--------------------------------------------------+
127| pmd_clear_soft_dirty      | Clears a soft dirty PMD                          |
128+---------------------------+--------------------------------------------------+
129| pmd_swp_mksoft_dirty      | Creates a soft dirty swapped PMD                 |
130+---------------------------+--------------------------------------------------+
131| pmd_swp_clear_soft_dirty  | Clears a soft dirty swapped PMD                  |
132+---------------------------+--------------------------------------------------+
133| pmd_mkinvalid             | Invalidates a present PMD; do not call for       |
134|                           | non-present PMD [1]                              |
135+---------------------------+--------------------------------------------------+
136| pmd_set_huge              | Creates a PMD huge mapping                       |
137+---------------------------+--------------------------------------------------+
138| pmd_clear_huge            | Clears a PMD huge mapping                        |
139+---------------------------+--------------------------------------------------+
140| pmdp_get_and_clear        | Clears a PMD                                     |
141+---------------------------+--------------------------------------------------+
142| pmdp_get_and_clear_full   | Clears a PMD                                     |
143+---------------------------+--------------------------------------------------+
144| pmdp_test_and_clear_young | Clears young from a PMD                          |
145+---------------------------+--------------------------------------------------+
146| pmdp_set_wrprotect        | Converts into a write protected PMD              |
147+---------------------------+--------------------------------------------------+
148| pmdp_set_access_flags     | Converts into a more permissive PMD              |
149+---------------------------+--------------------------------------------------+
150
151
152PUD Page Table Helpers
153======================
154
155+---------------------------+--------------------------------------------------+
156| pud_same                  | Tests whether both PUD entries are the same      |
157+---------------------------+--------------------------------------------------+
158| pud_bad                   | Tests a non-table mapped PUD                     |
159+---------------------------+--------------------------------------------------+
160| pud_leaf                  | Tests a leaf mapped PUD                          |
161+---------------------------+--------------------------------------------------+
162| pud_trans_huge            | Tests a Transparent Huge Page (THP) at PUD       |
163+---------------------------+--------------------------------------------------+
164| pud_present               | Tests a valid mapped PUD                         |
165+---------------------------+--------------------------------------------------+
166| pud_young                 | Tests a young PUD                                |
167+---------------------------+--------------------------------------------------+
168| pud_dirty                 | Tests a dirty PUD                                |
169+---------------------------+--------------------------------------------------+
170| pud_write                 | Tests a writable PUD                             |
171+---------------------------+--------------------------------------------------+
172| pud_mkyoung               | Creates a young PUD                              |
173+---------------------------+--------------------------------------------------+
174| pud_mkold                 | Creates an old PUD                               |
175+---------------------------+--------------------------------------------------+
176| pud_mkdirty               | Creates a dirty PUD                              |
177+---------------------------+--------------------------------------------------+
178| pud_mkclean               | Creates a clean PUD                              |
179+---------------------------+--------------------------------------------------+
180| pud_mkwrite               | Creates a writable PUD                           |
181+---------------------------+--------------------------------------------------+
182| pud_wrprotect             | Creates a write protected PUD                    |
183+---------------------------+--------------------------------------------------+
184| pud_mkinvalid             | Invalidates a present PUD; do not call for       |
185|                           | non-present PUD [1]                              |
186+---------------------------+--------------------------------------------------+
187| pud_set_huge              | Creates a PUD huge mapping                       |
188+---------------------------+--------------------------------------------------+
189| pud_clear_huge            | Clears a PUD huge mapping                        |
190+---------------------------+--------------------------------------------------+
191| pudp_get_and_clear        | Clears a PUD                                     |
192+---------------------------+--------------------------------------------------+
193| pudp_get_and_clear_full   | Clears a PUD                                     |
194+---------------------------+--------------------------------------------------+
195| pudp_test_and_clear_young | Clears young from a PUD                          |
196+---------------------------+--------------------------------------------------+
197| pudp_set_wrprotect        | Converts into a write protected PUD              |
198+---------------------------+--------------------------------------------------+
199| pudp_set_access_flags     | Converts into a more permissive PUD              |
200+---------------------------+--------------------------------------------------+
201
202
203HugeTLB Page Table Helpers
204==========================
205
206+---------------------------+--------------------------------------------------+
207| pte_huge                  | Tests a HugeTLB                                  |
208+---------------------------+--------------------------------------------------+
209| arch_make_huge_pte        | Creates a HugeTLB                                |
210+---------------------------+--------------------------------------------------+
211| huge_pte_dirty            | Tests a dirty HugeTLB                            |
212+---------------------------+--------------------------------------------------+
213| huge_pte_write            | Tests a writable HugeTLB                         |
214+---------------------------+--------------------------------------------------+
215| huge_pte_mkdirty          | Creates a dirty HugeTLB                          |
216+---------------------------+--------------------------------------------------+
217| huge_pte_mkwrite          | Creates a writable HugeTLB                       |
218+---------------------------+--------------------------------------------------+
219| huge_pte_wrprotect        | Creates a write protected HugeTLB                |
220+---------------------------+--------------------------------------------------+
221| huge_ptep_get_and_clear   | Clears a HugeTLB                                 |
222+---------------------------+--------------------------------------------------+
223| huge_ptep_set_wrprotect   | Converts into a write protected HugeTLB          |
224+---------------------------+--------------------------------------------------+
225| huge_ptep_set_access_flags  | Converts into a more permissive HugeTLB        |
226+---------------------------+--------------------------------------------------+
227
228
229SWAP Page Table Helpers
230========================
231
232+---------------------------+--------------------------------------------------+
233| __pte_to_swp_entry        | Creates a swp_entry_t (arch) from a swap PTE     |
234+---------------------------+--------------------------------------------------+
235| __swp_entry_to_pte        | Creates a swap PTE from a swp_entry_t (arch)     |
236+---------------------------+--------------------------------------------------+
237| __pmd_to_swp_entry        | Creates a swp_entry_t (arch) from a swap PMD     |
238+---------------------------+--------------------------------------------------+
239| __swp_entry_to_pmd        | Creates a swap PMD from a swp_entry_t (arch)     |
240+---------------------------+--------------------------------------------------+
241| is_migration_entry        | Tests a migration (read or write) swapped entry  |
242+-------------------------------+----------------------------------------------+
243| is_writable_migration_entry   | Tests a write migration swapped entry        |
244+-------------------------------+----------------------------------------------+
245| make_readable_migration_entry | Creates a read migration swapped entry       |
246+-------------------------------+----------------------------------------------+
247| make_writable_migration_entry | Creates a write migration swapped entry      |
248+-------------------------------+----------------------------------------------+
249
250[1] https://lore.kernel.org/linux-mm/20181017020930.GN30832@redhat.com/
251