Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_SWAPOPS_H |
| 2 | #define _LINUX_SWAPOPS_H |
| 3 | |
| 4 | #include <linux/radix-tree.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 5 | #include <linux/bug.h> |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | /* |
| 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 Dickins | 9b15b81 | 2012-06-15 17:55:50 -0700 | [diff] [blame] | 12 | * We arrange the `type' and `offset' fields so that `type' is at the seven |
Paolo 'Blaisorblade' Giarrusso | e83a959 | 2005-09-03 15:54:53 -0700 | [diff] [blame] | 13 | * high-order bits of the swp_entry_t and `offset' is right-aligned in the |
Hugh Dickins | 9b15b81 | 2012-06-15 17:55:50 -0700 | [diff] [blame] | 14 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * |
| 17 | * swp_entry_t's are *never* stored anywhere in their arch-dependent format. |
| 18 | */ |
Hugh Dickins | 9b15b81 | 2012-06-15 17:55:50 -0700 | [diff] [blame] | 19 | #define SWP_TYPE_SHIFT(e) ((sizeof(e.val) * 8) - \ |
| 20 | (MAX_SWAPFILES_SHIFT + RADIX_TREE_EXCEPTIONAL_SHIFT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #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 | */ |
| 26 | static 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 | */ |
| 39 | static 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 | */ |
| 48 | static inline pgoff_t swp_offset(swp_entry_t entry) |
| 49 | { |
| 50 | return entry.val & SWP_OFFSET_MASK(entry); |
| 51 | } |
| 52 | |
Matt Mackall | 880cdf3 | 2008-02-09 00:10:12 -0800 | [diff] [blame] | 53 | #ifdef CONFIG_MMU |
Matt Mackall | 698dd4b | 2008-02-04 22:29:00 -0800 | [diff] [blame] | 54 | /* check whether a pte points to a swap entry */ |
| 55 | static inline int is_swap_pte(pte_t pte) |
| 56 | { |
| 57 | return !pte_none(pte) && !pte_present(pte) && !pte_file(pte); |
| 58 | } |
Matt Mackall | 880cdf3 | 2008-02-09 00:10:12 -0800 | [diff] [blame] | 59 | #endif |
Matt Mackall | 698dd4b | 2008-02-04 22:29:00 -0800 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* |
| 62 | * Convert the arch-dependent pte representation of a swp_entry_t into an |
| 63 | * arch-independent swp_entry_t. |
| 64 | */ |
| 65 | static inline swp_entry_t pte_to_swp_entry(pte_t pte) |
| 66 | { |
| 67 | swp_entry_t arch_entry; |
| 68 | |
| 69 | BUG_ON(pte_file(pte)); |
Cyrill Gorcunov | 179ef71 | 2013-08-13 16:00:49 -0700 | [diff] [blame] | 70 | if (pte_swp_soft_dirty(pte)) |
| 71 | pte = pte_swp_clear_soft_dirty(pte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | arch_entry = __pte_to_swp_entry(pte); |
| 73 | return swp_entry(__swp_type(arch_entry), __swp_offset(arch_entry)); |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * Convert the arch-independent representation of a swp_entry_t into the |
| 78 | * arch-dependent pte representation. |
| 79 | */ |
| 80 | static inline pte_t swp_entry_to_pte(swp_entry_t entry) |
| 81 | { |
| 82 | swp_entry_t arch_entry; |
| 83 | |
| 84 | arch_entry = __swp_entry(swp_type(entry), swp_offset(entry)); |
| 85 | BUG_ON(pte_file(__swp_entry_to_pte(arch_entry))); |
| 86 | return __swp_entry_to_pte(arch_entry); |
| 87 | } |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 88 | |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 89 | static inline swp_entry_t radix_to_swp_entry(void *arg) |
| 90 | { |
| 91 | swp_entry_t entry; |
| 92 | |
| 93 | entry.val = (unsigned long)arg >> RADIX_TREE_EXCEPTIONAL_SHIFT; |
| 94 | return entry; |
| 95 | } |
| 96 | |
| 97 | static inline void *swp_to_radix_entry(swp_entry_t entry) |
| 98 | { |
| 99 | unsigned long value; |
| 100 | |
| 101 | value = entry.val << RADIX_TREE_EXCEPTIONAL_SHIFT; |
| 102 | return (void *)(value | RADIX_TREE_EXCEPTIONAL_ENTRY); |
| 103 | } |
| 104 | |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 105 | #ifdef CONFIG_MIGRATION |
| 106 | static inline swp_entry_t make_migration_entry(struct page *page, int write) |
| 107 | { |
| 108 | BUG_ON(!PageLocked(page)); |
| 109 | return swp_entry(write ? SWP_MIGRATION_WRITE : SWP_MIGRATION_READ, |
| 110 | page_to_pfn(page)); |
| 111 | } |
| 112 | |
| 113 | static inline int is_migration_entry(swp_entry_t entry) |
| 114 | { |
| 115 | return unlikely(swp_type(entry) == SWP_MIGRATION_READ || |
| 116 | swp_type(entry) == SWP_MIGRATION_WRITE); |
| 117 | } |
| 118 | |
| 119 | static inline int is_write_migration_entry(swp_entry_t entry) |
| 120 | { |
| 121 | return unlikely(swp_type(entry) == SWP_MIGRATION_WRITE); |
| 122 | } |
| 123 | |
| 124 | static inline struct page *migration_entry_to_page(swp_entry_t entry) |
| 125 | { |
| 126 | struct page *p = pfn_to_page(swp_offset(entry)); |
| 127 | /* |
| 128 | * Any use of migration entries may only occur while the |
| 129 | * corresponding page is locked |
| 130 | */ |
| 131 | BUG_ON(!PageLocked(p)); |
| 132 | return p; |
| 133 | } |
| 134 | |
| 135 | static inline void make_migration_entry_read(swp_entry_t *entry) |
| 136 | { |
| 137 | *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry)); |
| 138 | } |
| 139 | |
| 140 | extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
| 141 | unsigned long address); |
Naoya Horiguchi | 30dad30 | 2013-06-12 14:05:04 -0700 | [diff] [blame] | 142 | extern void migration_entry_wait_huge(struct mm_struct *mm, pte_t *pte); |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 143 | #else |
| 144 | |
| 145 | #define make_migration_entry(page, write) swp_entry(0, 0) |
Andrew Morton | 5ec553a | 2007-02-20 13:57:50 -0800 | [diff] [blame] | 146 | static inline int is_migration_entry(swp_entry_t swp) |
| 147 | { |
| 148 | return 0; |
| 149 | } |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 150 | #define migration_entry_to_page(swp) NULL |
| 151 | static inline void make_migration_entry_read(swp_entry_t *entryp) { } |
| 152 | static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
| 153 | unsigned long address) { } |
Naoya Horiguchi | 30dad30 | 2013-06-12 14:05:04 -0700 | [diff] [blame] | 154 | static inline void migration_entry_wait_huge(struct mm_struct *mm, |
| 155 | pte_t *pte) { } |
Christoph Lameter | 0697212 | 2006-06-23 02:03:35 -0700 | [diff] [blame] | 156 | static inline int is_write_migration_entry(swp_entry_t entry) |
| 157 | { |
| 158 | return 0; |
| 159 | } |
| 160 | |
| 161 | #endif |
| 162 | |
Andi Kleen | a7420aa | 2009-09-16 11:50:05 +0200 | [diff] [blame] | 163 | #ifdef CONFIG_MEMORY_FAILURE |
| 164 | /* |
| 165 | * Support for hardware poisoned pages |
| 166 | */ |
| 167 | static inline swp_entry_t make_hwpoison_entry(struct page *page) |
| 168 | { |
| 169 | BUG_ON(!PageLocked(page)); |
| 170 | return swp_entry(SWP_HWPOISON, page_to_pfn(page)); |
| 171 | } |
| 172 | |
| 173 | static inline int is_hwpoison_entry(swp_entry_t entry) |
| 174 | { |
| 175 | return swp_type(entry) == SWP_HWPOISON; |
| 176 | } |
| 177 | #else |
| 178 | |
| 179 | static inline swp_entry_t make_hwpoison_entry(struct page *page) |
| 180 | { |
| 181 | return swp_entry(0, 0); |
| 182 | } |
| 183 | |
| 184 | static inline int is_hwpoison_entry(swp_entry_t swp) |
| 185 | { |
| 186 | return 0; |
| 187 | } |
| 188 | #endif |
| 189 | |
| 190 | #if defined(CONFIG_MEMORY_FAILURE) || defined(CONFIG_MIGRATION) |
| 191 | static inline int non_swap_entry(swp_entry_t entry) |
| 192 | { |
| 193 | return swp_type(entry) >= MAX_SWAPFILES; |
| 194 | } |
| 195 | #else |
| 196 | static inline int non_swap_entry(swp_entry_t entry) |
| 197 | { |
| 198 | return 0; |
| 199 | } |
| 200 | #endif |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 201 | |
| 202 | #endif /* _LINUX_SWAPOPS_H */ |