blob: 45b092aa6419959c37ce0f7d57d64ba751a43c01 [file] [log] [blame]
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001#ifndef _LINUX_SWAPOPS_H
2#define _LINUX_SWAPOPS_H
3
4#include <linux/radix-tree.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -05005#include <linux/bug.h>
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007/*
8 * swapcache pages are stored in the swapper_space radix tree. We want to
9 * get good packing density in that tree, so the index should be dense in
10 * the low-order bits.
11 *
Hugh Dickins9b15b812012-06-15 17:55:50 -070012 * We arrange the `type' and `offset' fields so that `type' is at the seven
Paolo 'Blaisorblade' Giarrussoe83a9592005-09-03 15:54:53 -070013 * high-order bits of the swp_entry_t and `offset' is right-aligned in the
Hugh Dickins9b15b812012-06-15 17:55:50 -070014 * remaining bits. Although `type' itself needs only five bits, we allow for
15 * shmem/tmpfs to shift it all up a further two bits: see swp_to_radix_entry().
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * swp_entry_t's are *never* stored anywhere in their arch-dependent format.
18 */
Hugh Dickins9b15b812012-06-15 17:55:50 -070019#define SWP_TYPE_SHIFT(e) ((sizeof(e.val) * 8) - \
20 (MAX_SWAPFILES_SHIFT + RADIX_TREE_EXCEPTIONAL_SHIFT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define SWP_OFFSET_MASK(e) ((1UL << SWP_TYPE_SHIFT(e)) - 1)
22
23/*
24 * Store a type+offset into a swp_entry_t in an arch-independent format
25 */
26static inline swp_entry_t swp_entry(unsigned long type, pgoff_t offset)
27{
28 swp_entry_t ret;
29
30 ret.val = (type << SWP_TYPE_SHIFT(ret)) |
31 (offset & SWP_OFFSET_MASK(ret));
32 return ret;
33}
34
35/*
36 * Extract the `type' field from a swp_entry_t. The swp_entry_t is in
37 * arch-independent format
38 */
39static inline unsigned swp_type(swp_entry_t entry)
40{
41 return (entry.val >> SWP_TYPE_SHIFT(entry));
42}
43
44/*
45 * Extract the `offset' field from a swp_entry_t. The swp_entry_t is in
46 * arch-independent format
47 */
48static inline pgoff_t swp_offset(swp_entry_t entry)
49{
50 return entry.val & SWP_OFFSET_MASK(entry);
51}
52
Matt Mackall880cdf32008-02-09 00:10:12 -080053#ifdef CONFIG_MMU
Matt Mackall698dd4b2008-02-04 22:29:00 -080054/* check whether a pte points to a swap entry */
55static inline int is_swap_pte(pte_t pte)
56{
Mel Gorman21d9ee32015-02-12 14:58:32 -080057 return !pte_none(pte) && !pte_present(pte);
Matt Mackall698dd4b2008-02-04 22:29:00 -080058}
Matt Mackall880cdf32008-02-09 00:10:12 -080059#endif
Matt Mackall698dd4b2008-02-04 22:29:00 -080060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
62 * Convert the arch-dependent pte representation of a swp_entry_t into an
63 * arch-independent swp_entry_t.
64 */
65static inline swp_entry_t pte_to_swp_entry(pte_t pte)
66{
67 swp_entry_t arch_entry;
68
Cyrill Gorcunov179ef712013-08-13 16:00:49 -070069 if (pte_swp_soft_dirty(pte))
70 pte = pte_swp_clear_soft_dirty(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 arch_entry = __pte_to_swp_entry(pte);
72 return swp_entry(__swp_type(arch_entry), __swp_offset(arch_entry));
73}
74
75/*
76 * Convert the arch-independent representation of a swp_entry_t into the
77 * arch-dependent pte representation.
78 */
79static inline pte_t swp_entry_to_pte(swp_entry_t entry)
80{
81 swp_entry_t arch_entry;
82
83 arch_entry = __swp_entry(swp_type(entry), swp_offset(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return __swp_entry_to_pte(arch_entry);
85}
Christoph Lameter06972122006-06-23 02:03:35 -070086
Hugh Dickinsa2c16d62011-08-03 16:21:19 -070087static inline swp_entry_t radix_to_swp_entry(void *arg)
88{
89 swp_entry_t entry;
90
91 entry.val = (unsigned long)arg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
92 return entry;
93}
94
95static inline void *swp_to_radix_entry(swp_entry_t entry)
96{
97 unsigned long value;
98
99 value = entry.val << RADIX_TREE_EXCEPTIONAL_SHIFT;
100 return (void *)(value | RADIX_TREE_EXCEPTIONAL_ENTRY);
101}
102
Christoph Lameter06972122006-06-23 02:03:35 -0700103#ifdef CONFIG_MIGRATION
104static inline swp_entry_t make_migration_entry(struct page *page, int write)
105{
Zi Yan616b8372017-09-08 16:10:57 -0700106 BUG_ON(!PageLocked(compound_head(page)));
107
Christoph Lameter06972122006-06-23 02:03:35 -0700108 return swp_entry(write ? SWP_MIGRATION_WRITE : SWP_MIGRATION_READ,
109 page_to_pfn(page));
110}
111
112static inline int is_migration_entry(swp_entry_t entry)
113{
114 return unlikely(swp_type(entry) == SWP_MIGRATION_READ ||
115 swp_type(entry) == SWP_MIGRATION_WRITE);
116}
117
118static inline int is_write_migration_entry(swp_entry_t entry)
119{
120 return unlikely(swp_type(entry) == SWP_MIGRATION_WRITE);
121}
122
123static inline struct page *migration_entry_to_page(swp_entry_t entry)
124{
125 struct page *p = pfn_to_page(swp_offset(entry));
126 /*
127 * Any use of migration entries may only occur while the
128 * corresponding page is locked
129 */
Zi Yan616b8372017-09-08 16:10:57 -0700130 BUG_ON(!PageLocked(compound_head(p)));
Christoph Lameter06972122006-06-23 02:03:35 -0700131 return p;
132}
133
134static inline void make_migration_entry_read(swp_entry_t *entry)
135{
136 *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry));
137}
138
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800139extern void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
140 spinlock_t *ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700141extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
142 unsigned long address);
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800143extern void migration_entry_wait_huge(struct vm_area_struct *vma,
144 struct mm_struct *mm, pte_t *pte);
Christoph Lameter06972122006-06-23 02:03:35 -0700145#else
146
147#define make_migration_entry(page, write) swp_entry(0, 0)
Andrew Morton5ec553a2007-02-20 13:57:50 -0800148static inline int is_migration_entry(swp_entry_t swp)
149{
150 return 0;
151}
Zi Yan616b8372017-09-08 16:10:57 -0700152static inline struct page *migration_entry_to_page(swp_entry_t entry)
153{
154 return NULL;
155}
156
Christoph Lameter06972122006-06-23 02:03:35 -0700157static inline void make_migration_entry_read(swp_entry_t *entryp) { }
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800158static inline void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
159 spinlock_t *ptl) { }
Christoph Lameter06972122006-06-23 02:03:35 -0700160static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
161 unsigned long address) { }
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800162static inline void migration_entry_wait_huge(struct vm_area_struct *vma,
163 struct mm_struct *mm, pte_t *pte) { }
Christoph Lameter06972122006-06-23 02:03:35 -0700164static inline int is_write_migration_entry(swp_entry_t entry)
165{
166 return 0;
167}
168
169#endif
170
Zi Yan616b8372017-09-08 16:10:57 -0700171struct page_vma_mapped_walk;
172
173#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
174extern void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
175 struct page *page);
176
177extern void remove_migration_pmd(struct page_vma_mapped_walk *pvmw,
178 struct page *new);
179
180extern void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd);
181
182static inline swp_entry_t pmd_to_swp_entry(pmd_t pmd)
183{
184 swp_entry_t arch_entry;
185
Naoya Horiguchiab6e3d02017-09-08 16:11:04 -0700186 if (pmd_swp_soft_dirty(pmd))
187 pmd = pmd_swp_clear_soft_dirty(pmd);
Zi Yan616b8372017-09-08 16:10:57 -0700188 arch_entry = __pmd_to_swp_entry(pmd);
189 return swp_entry(__swp_type(arch_entry), __swp_offset(arch_entry));
190}
191
192static inline pmd_t swp_entry_to_pmd(swp_entry_t entry)
193{
194 swp_entry_t arch_entry;
195
196 arch_entry = __swp_entry(swp_type(entry), swp_offset(entry));
197 return __swp_entry_to_pmd(arch_entry);
198}
199
200static inline int is_pmd_migration_entry(pmd_t pmd)
201{
202 return !pmd_present(pmd) && is_migration_entry(pmd_to_swp_entry(pmd));
203}
204#else
205static inline void set_pmd_migration_entry(struct page_vma_mapped_walk *pvmw,
206 struct page *page)
207{
208 BUILD_BUG();
209}
210
211static inline void remove_migration_pmd(struct page_vma_mapped_walk *pvmw,
212 struct page *new)
213{
214 BUILD_BUG();
215}
216
217static inline void pmd_migration_entry_wait(struct mm_struct *m, pmd_t *p) { }
218
219static inline swp_entry_t pmd_to_swp_entry(pmd_t pmd)
220{
221 return swp_entry(0, 0);
222}
223
224static inline pmd_t swp_entry_to_pmd(swp_entry_t entry)
225{
226 return __pmd(0);
227}
228
229static inline int is_pmd_migration_entry(pmd_t pmd)
230{
231 return 0;
232}
233#endif
234
Andi Kleena7420aa2009-09-16 11:50:05 +0200235#ifdef CONFIG_MEMORY_FAILURE
Naoya Horiguchi8e304562015-09-08 15:03:24 -0700236
237extern atomic_long_t num_poisoned_pages __read_mostly;
238
Andi Kleena7420aa2009-09-16 11:50:05 +0200239/*
240 * Support for hardware poisoned pages
241 */
242static inline swp_entry_t make_hwpoison_entry(struct page *page)
243{
244 BUG_ON(!PageLocked(page));
245 return swp_entry(SWP_HWPOISON, page_to_pfn(page));
246}
247
248static inline int is_hwpoison_entry(swp_entry_t entry)
249{
250 return swp_type(entry) == SWP_HWPOISON;
251}
Naoya Horiguchi8e304562015-09-08 15:03:24 -0700252
Wanpeng Lida1b13c2015-09-08 15:03:27 -0700253static inline bool test_set_page_hwpoison(struct page *page)
254{
255 return TestSetPageHWPoison(page);
256}
257
Naoya Horiguchi8e304562015-09-08 15:03:24 -0700258static inline void num_poisoned_pages_inc(void)
259{
260 atomic_long_inc(&num_poisoned_pages);
261}
262
263static inline void num_poisoned_pages_dec(void)
264{
265 atomic_long_dec(&num_poisoned_pages);
266}
267
Andi Kleena7420aa2009-09-16 11:50:05 +0200268#else
269
270static inline swp_entry_t make_hwpoison_entry(struct page *page)
271{
272 return swp_entry(0, 0);
273}
274
275static inline int is_hwpoison_entry(swp_entry_t swp)
276{
277 return 0;
278}
Wanpeng Lida1b13c2015-09-08 15:03:27 -0700279
280static inline bool test_set_page_hwpoison(struct page *page)
281{
282 return false;
283}
284
285static inline void num_poisoned_pages_inc(void)
286{
287}
Andi Kleena7420aa2009-09-16 11:50:05 +0200288#endif
289
290#if defined(CONFIG_MEMORY_FAILURE) || defined(CONFIG_MIGRATION)
291static inline int non_swap_entry(swp_entry_t entry)
292{
293 return swp_type(entry) >= MAX_SWAPFILES;
294}
295#else
296static inline int non_swap_entry(swp_entry_t entry)
297{
298 return 0;
299}
300#endif
Hugh Dickinsa2c16d62011-08-03 16:21:19 -0700301
302#endif /* _LINUX_SWAPOPS_H */