1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SWAPOPS_H
3 #define _LINUX_SWAPOPS_H
5 #include <linux/radix-tree.h>
7 #include <linux/mm_types.h>
10 * swapcache pages are stored in the swapper_space radix tree. We want to
11 * get good packing density in that tree, so the index should be dense in
14 * We arrange the `type' and `offset' fields so that `type' is at the seven
15 * high-order bits of the swp_entry_t and `offset' is right-aligned in the
16 * remaining bits. Although `type' itself needs only five bits, we allow for
17 * shmem/tmpfs to shift it all up a further two bits: see swp_to_radix_entry().
19 * swp_entry_t's are *never* stored anywhere in their arch-dependent format.
21 #define SWP_TYPE_SHIFT(e) ((sizeof(e.val) * 8) - \
22 (MAX_SWAPFILES_SHIFT + RADIX_TREE_EXCEPTIONAL_SHIFT))
23 #define SWP_OFFSET_MASK(e) ((1UL << SWP_TYPE_SHIFT(e)) - 1)
26 * Store a type+offset into a swp_entry_t in an arch-independent format
28 static inline swp_entry_t swp_entry(unsigned long type, pgoff_t offset)
32 ret.val = (type << SWP_TYPE_SHIFT(ret)) |
33 (offset & SWP_OFFSET_MASK(ret));
38 * Extract the `type' field from a swp_entry_t. The swp_entry_t is in
39 * arch-independent format
41 static inline unsigned swp_type(swp_entry_t entry)
43 return (entry.val >> SWP_TYPE_SHIFT(entry));
47 * Extract the `offset' field from a swp_entry_t. The swp_entry_t is in
48 * arch-independent format
50 static inline pgoff_t swp_offset(swp_entry_t entry)
52 return entry.val & SWP_OFFSET_MASK(entry);
56 /* check whether a pte points to a swap entry */
57 static inline int is_swap_pte(pte_t pte)
59 return !pte_none(pte) && !pte_present(pte);
64 * Convert the arch-dependent pte representation of a swp_entry_t into an
65 * arch-independent swp_entry_t.
67 static inline swp_entry_t pte_to_swp_entry(pte_t pte)
69 swp_entry_t arch_entry;
71 if (pte_swp_soft_dirty(pte))
72 pte = pte_swp_clear_soft_dirty(pte);
73 arch_entry = __pte_to_swp_entry(pte);
74 return swp_entry(__swp_type(arch_entry), __swp_offset(arch_entry));
78 * Convert the arch-independent representation of a swp_entry_t into the
79 * arch-dependent pte representation.
81 static inline pte_t swp_entry_to_pte(swp_entry_t entry)
83 swp_entry_t arch_entry;
85 arch_entry = __swp_entry(swp_type(entry), swp_offset(entry));
86 return __swp_entry_to_pte(arch_entry);
89 static inline swp_entry_t radix_to_swp_entry(void *arg)
93 entry.val = (unsigned long)arg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
97 static inline void *swp_to_radix_entry(swp_entry_t entry)
101 value = entry.val << RADIX_TREE_EXCEPTIONAL_SHIFT;
102 return (void *)(value | RADIX_TREE_EXCEPTIONAL_ENTRY);
105 #if IS_ENABLED(CONFIG_DEVICE_PRIVATE)
106 static inline swp_entry_t make_device_private_entry(struct page *page, bool write)
108 return swp_entry(write ? SWP_DEVICE_WRITE : SWP_DEVICE_READ,
112 static inline bool is_device_private_entry(swp_entry_t entry)
114 int type = swp_type(entry);
115 return type == SWP_DEVICE_READ || type == SWP_DEVICE_WRITE;
118 static inline void make_device_private_entry_read(swp_entry_t *entry)
120 *entry = swp_entry(SWP_DEVICE_READ, swp_offset(*entry));
123 static inline bool is_write_device_private_entry(swp_entry_t entry)
125 return unlikely(swp_type(entry) == SWP_DEVICE_WRITE);
128 static inline unsigned long device_private_entry_to_pfn(swp_entry_t entry)
130 return swp_offset(entry);
133 static inline struct page *device_private_entry_to_page(swp_entry_t entry)
135 return pfn_to_page(swp_offset(entry));
138 vm_fault_t device_private_entry_fault(struct vm_area_struct *vma,
143 #else /* CONFIG_DEVICE_PRIVATE */
144 static inline swp_entry_t make_device_private_entry(struct page *page, bool write)
146 return swp_entry(0, 0);
149 static inline void make_device_private_entry_read(swp_entry_t *entry)
153 static inline bool is_device_private_entry(swp_entry_t entry)
158 static inline bool is_write_device_private_entry(swp_entry_t entry)
163 static inline unsigned long device_private_entry_to_pfn(swp_entry_t entry)
168 static inline struct page *device_private_entry_to_page(swp_entry_t entry)
173 static inline vm_fault_t device_private_entry_fault(struct vm_area_struct *vma,
179 return VM_FAULT_SIGBUS;
181 #endif /* CONFIG_DEVICE_PRIVATE */
183 #ifdef CONFIG_MIGRATION
184 static inline swp_entry_t make_migration_entry(struct page *page, int write)
186 BUG_ON(!PageLocked(compound_head(page)));
188 return swp_entry(write ? SWP_MIGRATION_WRITE : SWP_MIGRATION_READ,
192 static inline int is_migration_entry(swp_entry_t entry)
194 return unlikely(swp_type(entry) == SWP_MIGRATION_READ ||
195 swp_type(entry) == SWP_MIGRATION_WRITE);
198 static inline int is_write_migration_entry(swp_entry_t entry)
200 return unlikely(swp_type(entry) == SWP_MIGRATION_WRITE);
203 static inline unsigned long migration_entry_to_pfn(swp_entry_t entry)
205 return swp_offset(entry);
208 static inline struct page *migration_entry_to_page(swp_entry_t entry)
210 struct page *p = pfn_to_page(swp_offset(entry));
212 * Any use of migration entries may only occur while the
213 * corresponding page is locked
215 BUG_ON(!PageLocked(compound_head(p)));
219 static inline void make_migration_entry_read(swp_entry_t *entry)
221 *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry));
224 extern void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
226 extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
227 unsigned long address);
228 extern void migration_entry_wait_huge(struct vm_area_struct *vma,
229 struct mm_struct *mm, pte_t *pte);
232 #define make_migration_entry(page, write) swp_entry(0, 0)
233 static inline int is_migration_entry(swp_entry_t swp)
238 static inline unsigned long migration_entry_to_pfn(swp_entry_t entry)
243 static inline struct page *migration_entry_to_page(swp_entry_t entry)
248 static inline void make_migration_entry_read(swp_entry_t *entryp) { }
249 static inline void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
251 static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
252 unsigned long address) { }
253 static inline void migration_entry_wait_huge(struct vm_area_struct *vma,
254 struct mm_struct *mm, pte_t *pte) { }
255 static inline int is_write_migration_entry(swp_entry_t entry)
262 struct page_vma_mapped_walk;
264 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
265 extern void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
268 extern void remove_migration_pmd(struct page_vma_mapped_walk *pvmw,
271 extern void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd);
273 static inline swp_entry_t pmd_to_swp_entry(pmd_t pmd)
275 swp_entry_t arch_entry;
277 if (pmd_swp_soft_dirty(pmd))
278 pmd = pmd_swp_clear_soft_dirty(pmd);
279 arch_entry = __pmd_to_swp_entry(pmd);
280 return swp_entry(__swp_type(arch_entry), __swp_offset(arch_entry));
283 static inline pmd_t swp_entry_to_pmd(swp_entry_t entry)
285 swp_entry_t arch_entry;
287 arch_entry = __swp_entry(swp_type(entry), swp_offset(entry));
288 return __swp_entry_to_pmd(arch_entry);
291 static inline int is_pmd_migration_entry(pmd_t pmd)
293 return !pmd_present(pmd) && is_migration_entry(pmd_to_swp_entry(pmd));
296 static inline void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
302 static inline void remove_migration_pmd(struct page_vma_mapped_walk *pvmw,
308 static inline void pmd_migration_entry_wait(struct mm_struct *m, pmd_t *p) { }
310 static inline swp_entry_t pmd_to_swp_entry(pmd_t pmd)
312 return swp_entry(0, 0);
315 static inline pmd_t swp_entry_to_pmd(swp_entry_t entry)
320 static inline int is_pmd_migration_entry(pmd_t pmd)
326 #ifdef CONFIG_MEMORY_FAILURE
328 extern atomic_long_t num_poisoned_pages __read_mostly;
331 * Support for hardware poisoned pages
333 static inline swp_entry_t make_hwpoison_entry(struct page *page)
335 BUG_ON(!PageLocked(page));
336 return swp_entry(SWP_HWPOISON, page_to_pfn(page));
339 static inline int is_hwpoison_entry(swp_entry_t entry)
341 return swp_type(entry) == SWP_HWPOISON;
344 static inline void num_poisoned_pages_inc(void)
346 atomic_long_inc(&num_poisoned_pages);
349 static inline void num_poisoned_pages_dec(void)
351 atomic_long_dec(&num_poisoned_pages);
356 static inline swp_entry_t make_hwpoison_entry(struct page *page)
358 return swp_entry(0, 0);
361 static inline int is_hwpoison_entry(swp_entry_t swp)
366 static inline void num_poisoned_pages_inc(void)
371 #if defined(CONFIG_MEMORY_FAILURE) || defined(CONFIG_MIGRATION)
372 static inline int non_swap_entry(swp_entry_t entry)
374 return swp_type(entry) >= MAX_SWAPFILES;
377 static inline int non_swap_entry(swp_entry_t entry)
383 #endif /* _LINUX_SWAPOPS_H */