Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_MM_TYPES_H |
| 2 | #define _LINUX_MM_TYPES_H |
| 3 | |
Olaf Hering | 4f9a58d | 2007-10-16 23:30:12 -0700 | [diff] [blame] | 4 | #include <linux/auxvec.h> |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 5 | #include <linux/types.h> |
| 6 | #include <linux/threads.h> |
| 7 | #include <linux/list.h> |
| 8 | #include <linux/spinlock.h> |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 9 | #include <linux/rbtree.h> |
| 10 | #include <linux/rwsem.h> |
| 11 | #include <linux/completion.h> |
Andrea Arcangeli | cddb8a5 | 2008-07-28 15:46:29 -0700 | [diff] [blame] | 12 | #include <linux/cpumask.h> |
Srikar Dronamraju | d4b3b63 | 2012-03-30 23:56:31 +0530 | [diff] [blame] | 13 | #include <linux/uprobes.h> |
Peter Zijlstra | bbeae5b | 2013-02-22 16:34:30 -0800 | [diff] [blame] | 14 | #include <linux/page-flags-layout.h> |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 15 | #include <asm/page.h> |
| 16 | #include <asm/mmu.h> |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 17 | |
Olaf Hering | 4f9a58d | 2007-10-16 23:30:12 -0700 | [diff] [blame] | 18 | #ifndef AT_VECTOR_SIZE_ARCH |
| 19 | #define AT_VECTOR_SIZE_ARCH 0 |
| 20 | #endif |
| 21 | #define AT_VECTOR_SIZE (2*(AT_VECTOR_SIZE_ARCH + AT_VECTOR_SIZE_BASE + 1)) |
| 22 | |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 23 | struct address_space; |
Johannes Weiner | 1306a85 | 2014-12-10 15:44:52 -0800 | [diff] [blame] | 24 | struct mem_cgroup; |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 25 | |
Kirill A. Shutemov | 57c1ffc | 2013-11-14 14:30:45 -0800 | [diff] [blame] | 26 | #define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS) |
Kirill A. Shutemov | e009bb3 | 2013-11-14 14:31:07 -0800 | [diff] [blame] | 27 | #define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \ |
| 28 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) |
Kirill A. Shutemov | 597d795 | 2013-12-20 13:35:58 +0200 | [diff] [blame] | 29 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) |
Jeremy Fitzhardinge | f7d0b92 | 2008-09-09 15:43:22 -0700 | [diff] [blame] | 30 | |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 31 | /* |
| 32 | * Each physical page in the system has a struct page associated with |
| 33 | * it to keep track of whatever it is we are using the page for at the |
| 34 | * moment. Note that we have no way to track which tasks are using |
| 35 | * a page, though if it is a pagecache page, rmap structures can tell us |
| 36 | * who is mapping it. |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 37 | * |
| 38 | * The objects in struct page are organized in double word blocks in |
| 39 | * order to allows us to use atomic double word operations on portions |
| 40 | * of struct page. That is currently only used by slub but the arrangement |
| 41 | * allows the use of atomic double word operations on the flags/mapping |
| 42 | * and lru list pointers also. |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 43 | */ |
| 44 | struct page { |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 45 | /* First double word block */ |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 46 | unsigned long flags; /* Atomic flags, some possibly |
| 47 | * updated asynchronously */ |
Joonsoo Kim | 8456a64 | 2013-10-24 10:07:49 +0900 | [diff] [blame] | 48 | union { |
| 49 | struct address_space *mapping; /* If low bit clear, points to |
| 50 | * inode address_space, or NULL. |
| 51 | * If page mapped as anonymous |
| 52 | * memory, low bit is set, and |
| 53 | * it points to anon_vma object: |
| 54 | * see PAGE_MAPPING_ANON below. |
| 55 | */ |
| 56 | void *s_mem; /* slab first object */ |
| 57 | }; |
| 58 | |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 59 | /* Second double word */ |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 60 | struct { |
| 61 | union { |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 62 | pgoff_t index; /* Our offset within mapping. */ |
Joonsoo Kim | 8456a64 | 2013-10-24 10:07:49 +0900 | [diff] [blame] | 63 | void *freelist; /* sl[aou]b first free object */ |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 64 | }; |
| 65 | |
| 66 | union { |
Pravin B Shelar | abca7c4 | 2012-06-20 12:52:56 -0700 | [diff] [blame] | 67 | #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \ |
| 68 | defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE) |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 69 | /* Used for cmpxchg_double in slub */ |
| 70 | unsigned long counters; |
Pravin B Shelar | abca7c4 | 2012-06-20 12:52:56 -0700 | [diff] [blame] | 71 | #else |
| 72 | /* |
| 73 | * Keep _count separate from slub cmpxchg_double data. |
| 74 | * As the rest of the double word is protected by |
| 75 | * slab_lock but _count is not. |
| 76 | */ |
| 77 | unsigned counters; |
| 78 | #endif |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 79 | |
| 80 | struct { |
| 81 | |
| 82 | union { |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 83 | /* |
| 84 | * Count of ptes mapped in |
| 85 | * mms, to show when page is |
| 86 | * mapped & limit reverse map |
| 87 | * searches. |
| 88 | * |
| 89 | * Used also for tail pages |
| 90 | * refcounting instead of |
| 91 | * _count. Tail pages cannot |
| 92 | * be mapped and keeping the |
| 93 | * tail page _count zero at |
| 94 | * all times guarantees |
| 95 | * get_page_unless_zero() will |
| 96 | * never succeed on tail |
| 97 | * pages. |
| 98 | */ |
| 99 | atomic_t _mapcount; |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 100 | |
Christoph Lameter | b8c24c4 | 2012-06-13 10:24:52 -0500 | [diff] [blame] | 101 | struct { /* SLUB */ |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 102 | unsigned inuse:16; |
| 103 | unsigned objects:15; |
| 104 | unsigned frozen:1; |
| 105 | }; |
Christoph Lameter | b8c24c4 | 2012-06-13 10:24:52 -0500 | [diff] [blame] | 106 | int units; /* SLOB */ |
Pekka Enberg | 3adf004 | 2011-07-18 15:16:55 +0300 | [diff] [blame] | 107 | }; |
Christoph Lameter | 013e896 | 2011-07-14 12:48:14 -0500 | [diff] [blame] | 108 | atomic_t _count; /* Usage count, see below. */ |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 109 | }; |
Joonsoo Kim | 8456a64 | 2013-10-24 10:07:49 +0900 | [diff] [blame] | 110 | unsigned int active; /* SLAB */ |
Christoph Lameter | 39b2646 | 2008-04-14 19:11:30 +0300 | [diff] [blame] | 111 | }; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 112 | }; |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 113 | |
Kirill A. Shutemov | 1d798ca | 2015-11-06 16:29:54 -0800 | [diff] [blame] | 114 | /* |
| 115 | * Third double word block |
| 116 | * |
| 117 | * WARNING: bit 0 of the first word encode PageTail(). That means |
| 118 | * the rest users of the storage space MUST NOT use the bit to |
| 119 | * avoid collision and false-positive PageTail(). |
| 120 | */ |
Christoph Lameter | 49e2258 | 2011-08-09 16:12:27 -0500 | [diff] [blame] | 121 | union { |
| 122 | struct list_head lru; /* Pageout list, eg. active_list |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 123 | * protected by zone->lru_lock ! |
Dave Hansen | 34bf6ef | 2014-04-08 13:44:27 -0700 | [diff] [blame] | 124 | * Can be used as a generic list |
| 125 | * by the page owner. |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 126 | */ |
Christoph Lameter | 49e2258 | 2011-08-09 16:12:27 -0500 | [diff] [blame] | 127 | struct { /* slub per cpu partial pages */ |
| 128 | struct page *next; /* Next partial slab */ |
| 129 | #ifdef CONFIG_64BIT |
| 130 | int pages; /* Nr of partial slabs left */ |
| 131 | int pobjects; /* Approximate # of objects */ |
| 132 | #else |
| 133 | short int pages; |
| 134 | short int pobjects; |
| 135 | #endif |
| 136 | }; |
Christoph Lameter | b8c24c4 | 2012-06-13 10:24:52 -0500 | [diff] [blame] | 137 | |
Joonsoo Kim | 6812670 | 2013-10-24 10:07:42 +0900 | [diff] [blame] | 138 | struct rcu_head rcu_head; /* Used by SLAB |
| 139 | * when destroying via RCU |
| 140 | */ |
Kirill A. Shutemov | 1d798ca | 2015-11-06 16:29:54 -0800 | [diff] [blame] | 141 | /* Tail pages of compound page */ |
Kirill A. Shutemov | e4b294c | 2015-02-11 15:24:46 -0800 | [diff] [blame] | 142 | struct { |
Kirill A. Shutemov | 1d798ca | 2015-11-06 16:29:54 -0800 | [diff] [blame] | 143 | unsigned long compound_head; /* If bit zero is set */ |
| 144 | |
| 145 | /* First tail page only */ |
Kirill A. Shutemov | 1965c8b | 2015-11-06 16:30:00 -0800 | [diff] [blame] | 146 | #ifdef CONFIG_64BIT |
| 147 | /* |
| 148 | * On 64 bit system we have enough space in struct page |
| 149 | * to encode compound_dtor and compound_order with |
| 150 | * unsigned int. It can help compiler generate better or |
| 151 | * smaller code on some archtectures. |
| 152 | */ |
| 153 | unsigned int compound_dtor; |
| 154 | unsigned int compound_order; |
| 155 | #else |
Kirill A. Shutemov | f1e6155 | 2015-11-06 16:29:50 -0800 | [diff] [blame] | 156 | unsigned short int compound_dtor; |
| 157 | unsigned short int compound_order; |
Kirill A. Shutemov | 1965c8b | 2015-11-06 16:30:00 -0800 | [diff] [blame] | 158 | #endif |
Kirill A. Shutemov | e4b294c | 2015-02-11 15:24:46 -0800 | [diff] [blame] | 159 | }; |
| 160 | |
Kirill A. Shutemov | 7aa555b | 2013-11-21 14:32:11 -0800 | [diff] [blame] | 161 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS |
Kirill A. Shutemov | 1d798ca | 2015-11-06 16:29:54 -0800 | [diff] [blame] | 162 | struct { |
| 163 | unsigned long __pad; /* do not overlay pmd_huge_pte |
| 164 | * with compound_head to avoid |
| 165 | * possible bit 0 collision. |
| 166 | */ |
| 167 | pgtable_t pmd_huge_pte; /* protected by page->ptl */ |
| 168 | }; |
Kirill A. Shutemov | 7aa555b | 2013-11-21 14:32:11 -0800 | [diff] [blame] | 169 | #endif |
Christoph Lameter | 49e2258 | 2011-08-09 16:12:27 -0500 | [diff] [blame] | 170 | }; |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 171 | |
| 172 | /* Remainder is not double word aligned */ |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 173 | union { |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 174 | unsigned long private; /* Mapping-private opaque data: |
| 175 | * usually used for buffer_heads |
| 176 | * if PagePrivate set; used for |
| 177 | * swp_entry_t if PageSwapCache; |
| 178 | * indicates order in the buddy |
| 179 | * system if PG_buddy is set. |
| 180 | */ |
Kirill A. Shutemov | 57c1ffc | 2013-11-14 14:30:45 -0800 | [diff] [blame] | 181 | #if USE_SPLIT_PTE_PTLOCKS |
Kirill A. Shutemov | 597d795 | 2013-12-20 13:35:58 +0200 | [diff] [blame] | 182 | #if ALLOC_SPLIT_PTLOCKS |
Peter Zijlstra | 539edb5 | 2013-11-14 14:31:52 -0800 | [diff] [blame] | 183 | spinlock_t *ptl; |
| 184 | #else |
| 185 | spinlock_t ptl; |
| 186 | #endif |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 187 | #endif |
Glauber Costa | 1b4f59e3 | 2012-10-22 18:05:36 +0400 | [diff] [blame] | 188 | struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */ |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 189 | }; |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 190 | |
Johannes Weiner | 1306a85 | 2014-12-10 15:44:52 -0800 | [diff] [blame] | 191 | #ifdef CONFIG_MEMCG |
| 192 | struct mem_cgroup *mem_cgroup; |
| 193 | #endif |
| 194 | |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 195 | /* |
| 196 | * On machines where all RAM is mapped into kernel address space, |
| 197 | * we can simply calculate the virtual address. On machines with |
| 198 | * highmem some memory is mapped into kernel virtual memory |
| 199 | * dynamically, so we need a place to store that address. |
| 200 | * Note that this field could be 16 bits on x86 ... ;) |
| 201 | * |
| 202 | * Architectures with slow multiplication can define |
| 203 | * WANT_PAGE_VIRTUAL in asm/page.h |
| 204 | */ |
| 205 | #if defined(WANT_PAGE_VIRTUAL) |
| 206 | void *virtual; /* Kernel virtual address (NULL if |
| 207 | not kmapped, ie. highmem) */ |
| 208 | #endif /* WANT_PAGE_VIRTUAL */ |
Vegard Nossum | dfec072 | 2008-04-04 00:51:41 +0200 | [diff] [blame] | 209 | |
| 210 | #ifdef CONFIG_KMEMCHECK |
| 211 | /* |
| 212 | * kmemcheck wants to track the status of each byte in a page; this |
| 213 | * is a pointer to such a status block. NULL if not tracked. |
| 214 | */ |
| 215 | void *shadow; |
| 216 | #endif |
Mel Gorman | 57e0a03 | 2012-11-12 09:06:20 +0000 | [diff] [blame] | 217 | |
Peter Zijlstra | 9057289 | 2013-10-07 11:29:20 +0100 | [diff] [blame] | 218 | #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS |
| 219 | int _last_cpupid; |
Mel Gorman | 57e0a03 | 2012-11-12 09:06:20 +0000 | [diff] [blame] | 220 | #endif |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 221 | } |
| 222 | /* |
Heiko Carstens | 43570fd | 2012-01-12 17:17:27 -0800 | [diff] [blame] | 223 | * The struct page can be forced to be double word aligned so that atomic ops |
| 224 | * on double words work. The SLUB allocator can make use of such a feature. |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 225 | */ |
Heiko Carstens | 43570fd | 2012-01-12 17:17:27 -0800 | [diff] [blame] | 226 | #ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE |
| 227 | __aligned(2 * sizeof(unsigned long)) |
Christoph Lameter | fc9bb8c | 2011-06-01 12:25:48 -0500 | [diff] [blame] | 228 | #endif |
| 229 | ; |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 230 | |
Ian Campbell | 30d3c12 | 2011-10-20 04:58:32 -0400 | [diff] [blame] | 231 | struct page_frag { |
| 232 | struct page *page; |
| 233 | #if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536) |
| 234 | __u32 offset; |
| 235 | __u32 size; |
| 236 | #else |
| 237 | __u16 offset; |
| 238 | __u16 size; |
| 239 | #endif |
| 240 | }; |
| 241 | |
Alexander Duyck | b63ae8c | 2015-05-06 21:11:57 -0700 | [diff] [blame] | 242 | #define PAGE_FRAG_CACHE_MAX_SIZE __ALIGN_MASK(32768, ~PAGE_MASK) |
| 243 | #define PAGE_FRAG_CACHE_MAX_ORDER get_order(PAGE_FRAG_CACHE_MAX_SIZE) |
| 244 | |
| 245 | struct page_frag_cache { |
| 246 | void * va; |
| 247 | #if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE) |
| 248 | __u16 offset; |
| 249 | __u16 size; |
| 250 | #else |
| 251 | __u32 offset; |
| 252 | #endif |
| 253 | /* we maintain a pagecount bias, so that we dont dirty cache line |
| 254 | * containing page->_count every time we allocate a fragment. |
| 255 | */ |
| 256 | unsigned int pagecnt_bias; |
| 257 | bool pfmemalloc; |
| 258 | }; |
| 259 | |
Kirill A. Shutemov | 64b990d | 2015-09-08 15:02:15 -0700 | [diff] [blame] | 260 | typedef unsigned long vm_flags_t; |
KOSAKI Motohiro | ca16d14 | 2011-05-26 19:16:19 +0900 | [diff] [blame] | 261 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 262 | /* |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 263 | * A region containing a mapping of a non-memory backed file under NOMMU |
| 264 | * conditions. These are held in a global tree and are pinned by the VMAs that |
| 265 | * map parts of them. |
| 266 | */ |
| 267 | struct vm_region { |
| 268 | struct rb_node vm_rb; /* link in global region tree */ |
KOSAKI Motohiro | ca16d14 | 2011-05-26 19:16:19 +0900 | [diff] [blame] | 269 | vm_flags_t vm_flags; /* VMA vm_flags */ |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 270 | unsigned long vm_start; /* start address of region */ |
| 271 | unsigned long vm_end; /* region initialised to here */ |
Paul Mundt | dd8632a | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 272 | unsigned long vm_top; /* region allocated to here */ |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 273 | unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */ |
| 274 | struct file *vm_file; /* the backing file or NULL */ |
| 275 | |
David Howells | 1e2ae59 | 2010-01-15 17:01:33 -0800 | [diff] [blame] | 276 | int vm_usage; /* region usage count (access under nommu_region_sem) */ |
Mike Frysinger | cfe79c0 | 2010-01-06 17:23:23 +0000 | [diff] [blame] | 277 | bool vm_icache_flushed : 1; /* true if the icache has been flushed for |
| 278 | * this region */ |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 279 | }; |
| 280 | |
Andrea Arcangeli | 745f234 | 2015-09-04 15:46:14 -0700 | [diff] [blame] | 281 | #ifdef CONFIG_USERFAULTFD |
| 282 | #define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, }) |
| 283 | struct vm_userfaultfd_ctx { |
| 284 | struct userfaultfd_ctx *ctx; |
| 285 | }; |
| 286 | #else /* CONFIG_USERFAULTFD */ |
| 287 | #define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {}) |
| 288 | struct vm_userfaultfd_ctx {}; |
| 289 | #endif /* CONFIG_USERFAULTFD */ |
| 290 | |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 291 | /* |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 292 | * This struct defines a memory VMM memory area. There is one of these |
| 293 | * per VM-area/task. A VM area is any part of the process virtual memory |
| 294 | * space that has a special rule for the page-fault handlers (ie a shared |
| 295 | * library, the executable area etc). |
| 296 | */ |
| 297 | struct vm_area_struct { |
Rik van Riel | e4c6bfd | 2012-12-11 16:01:44 -0800 | [diff] [blame] | 298 | /* The first cache line has the info for VMA tree walking. */ |
| 299 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 300 | unsigned long vm_start; /* Our start address within vm_mm. */ |
| 301 | unsigned long vm_end; /* The first byte after our end address |
| 302 | within vm_mm. */ |
| 303 | |
| 304 | /* linked list of VM areas per task, sorted by address */ |
Linus Torvalds | 297c5ee | 2010-08-20 16:24:55 -0700 | [diff] [blame] | 305 | struct vm_area_struct *vm_next, *vm_prev; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 306 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 307 | struct rb_node vm_rb; |
| 308 | |
| 309 | /* |
Michel Lespinasse | d373718 | 2012-12-11 16:01:38 -0800 | [diff] [blame] | 310 | * Largest free memory gap in bytes to the left of this VMA. |
| 311 | * Either between this VMA and vma->vm_prev, or between one of the |
| 312 | * VMAs below us in the VMA rbtree and its ->vm_prev. This helps |
| 313 | * get_unmapped_area find a free area of the right size. |
| 314 | */ |
| 315 | unsigned long rb_subtree_gap; |
| 316 | |
Rik van Riel | e4c6bfd | 2012-12-11 16:01:44 -0800 | [diff] [blame] | 317 | /* Second cache line starts here. */ |
| 318 | |
| 319 | struct mm_struct *vm_mm; /* The address space we belong to. */ |
| 320 | pgprot_t vm_page_prot; /* Access permissions of this VMA. */ |
| 321 | unsigned long vm_flags; /* Flags, see mm.h. */ |
| 322 | |
Michel Lespinasse | d373718 | 2012-12-11 16:01:38 -0800 | [diff] [blame] | 323 | /* |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 324 | * For areas with an address space and backing store, |
Kirill A. Shutemov | 27ba064 | 2015-02-10 14:09:59 -0800 | [diff] [blame] | 325 | * linkage into the address_space->i_mmap interval tree. |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 326 | */ |
Kirill A. Shutemov | ac51b93 | 2015-02-10 14:10:02 -0800 | [diff] [blame] | 327 | struct { |
| 328 | struct rb_node rb; |
| 329 | unsigned long rb_subtree_last; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 330 | } shared; |
| 331 | |
| 332 | /* |
| 333 | * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma |
| 334 | * list, after a COW of one of the file pages. A MAP_SHARED vma |
| 335 | * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack |
| 336 | * or brk vma (with NULL file) can only be in an anon_vma list. |
| 337 | */ |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 338 | struct list_head anon_vma_chain; /* Serialized by mmap_sem & |
| 339 | * page_table_lock */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 340 | struct anon_vma *anon_vma; /* Serialized by page_table_lock */ |
| 341 | |
| 342 | /* Function pointers to deal with this struct. */ |
Alexey Dobriyan | f0f37e2 | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 343 | const struct vm_operations_struct *vm_ops; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 344 | |
| 345 | /* Information about our backing store: */ |
| 346 | unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE |
| 347 | units, *not* PAGE_CACHE_SIZE */ |
| 348 | struct file * vm_file; /* File we map to (can be NULL). */ |
| 349 | void * vm_private_data; /* was vm_pte (shared mem) */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 350 | |
| 351 | #ifndef CONFIG_MMU |
David Howells | 8feae13 | 2009-01-08 12:04:47 +0000 | [diff] [blame] | 352 | struct vm_region *vm_region; /* NOMMU mapping region */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 353 | #endif |
| 354 | #ifdef CONFIG_NUMA |
| 355 | struct mempolicy *vm_policy; /* NUMA policy for the VMA */ |
| 356 | #endif |
Andrea Arcangeli | 745f234 | 2015-09-04 15:46:14 -0700 | [diff] [blame] | 357 | struct vm_userfaultfd_ctx vm_userfaultfd_ctx; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 358 | }; |
| 359 | |
Oleg Nesterov | b564daf | 2008-07-25 01:47:44 -0700 | [diff] [blame] | 360 | struct core_thread { |
| 361 | struct task_struct *task; |
| 362 | struct core_thread *next; |
| 363 | }; |
| 364 | |
Oleg Nesterov | 32ecb1f | 2008-07-25 01:47:41 -0700 | [diff] [blame] | 365 | struct core_state { |
Oleg Nesterov | c5f1cc8 | 2008-07-25 01:47:42 -0700 | [diff] [blame] | 366 | atomic_t nr_threads; |
Oleg Nesterov | b564daf | 2008-07-25 01:47:44 -0700 | [diff] [blame] | 367 | struct core_thread dumper; |
Oleg Nesterov | 32ecb1f | 2008-07-25 01:47:41 -0700 | [diff] [blame] | 368 | struct completion startup; |
| 369 | }; |
| 370 | |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 371 | enum { |
| 372 | MM_FILEPAGES, |
| 373 | MM_ANONPAGES, |
KAMEZAWA Hiroyuki | b084d43 | 2010-03-05 13:41:42 -0800 | [diff] [blame] | 374 | MM_SWAPENTS, |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 375 | NR_MM_COUNTERS |
| 376 | }; |
| 377 | |
Kirill A. Shutemov | 57c1ffc | 2013-11-14 14:30:45 -0800 | [diff] [blame] | 378 | #if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU) |
KAMEZAWA Hiroyuki | 34e5523 | 2010-03-05 13:41:40 -0800 | [diff] [blame] | 379 | #define SPLIT_RSS_COUNTING |
KAMEZAWA Hiroyuki | 34e5523 | 2010-03-05 13:41:40 -0800 | [diff] [blame] | 380 | /* per-thread cached information, */ |
| 381 | struct task_rss_stat { |
| 382 | int events; /* for synchronization threshold */ |
| 383 | int count[NR_MM_COUNTERS]; |
| 384 | }; |
Kirill A. Shutemov | 57c1ffc | 2013-11-14 14:30:45 -0800 | [diff] [blame] | 385 | #endif /* USE_SPLIT_PTE_PTLOCKS */ |
Matt Fleming | 172703b | 2011-05-24 17:12:36 -0700 | [diff] [blame] | 386 | |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 387 | struct mm_rss_stat { |
Matt Fleming | 172703b | 2011-05-24 17:12:36 -0700 | [diff] [blame] | 388 | atomic_long_t count[NR_MM_COUNTERS]; |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 389 | }; |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 390 | |
Benjamin LaHaise | db446a0 | 2013-07-30 12:54:40 -0400 | [diff] [blame] | 391 | struct kioctx_table; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 392 | struct mm_struct { |
Davidlohr Bueso | 615d6e8 | 2014-04-07 15:37:25 -0700 | [diff] [blame] | 393 | struct vm_area_struct *mmap; /* list of VMAs */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 394 | struct rb_root mm_rb; |
Davidlohr Bueso | 615d6e8 | 2014-04-07 15:37:25 -0700 | [diff] [blame] | 395 | u32 vmacache_seqnum; /* per-thread vmacache */ |
David Howells | efc1a3b | 2010-01-15 17:01:35 -0800 | [diff] [blame] | 396 | #ifdef CONFIG_MMU |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 397 | unsigned long (*get_unmapped_area) (struct file *filp, |
| 398 | unsigned long addr, unsigned long len, |
| 399 | unsigned long pgoff, unsigned long flags); |
David Howells | efc1a3b | 2010-01-15 17:01:35 -0800 | [diff] [blame] | 400 | #endif |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 401 | unsigned long mmap_base; /* base of mmap area */ |
Radu Caragea | 41aacc1 | 2013-08-21 20:55:59 +0300 | [diff] [blame] | 402 | unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 403 | unsigned long task_size; /* size of task vm space */ |
Michel Lespinasse | d373718 | 2012-12-11 16:01:38 -0800 | [diff] [blame] | 404 | unsigned long highest_vm_end; /* highest vma end address */ |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 405 | pgd_t * pgd; |
| 406 | atomic_t mm_users; /* How many users with user space? */ |
| 407 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 408 | atomic_long_t nr_ptes; /* PTE page table pages */ |
Kirill A. Shutemov | 5a3fbef | 2015-04-14 15:46:21 -0700 | [diff] [blame] | 409 | #if CONFIG_PGTABLE_LEVELS > 2 |
Kirill A. Shutemov | dc6c9a3 | 2015-02-11 15:26:50 -0800 | [diff] [blame] | 410 | atomic_long_t nr_pmds; /* PMD page table pages */ |
Kirill A. Shutemov | 5a3fbef | 2015-04-14 15:46:21 -0700 | [diff] [blame] | 411 | #endif |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 412 | int map_count; /* number of VMAs */ |
Richard Kennedy | 481b4bb | 2011-03-22 16:32:50 -0700 | [diff] [blame] | 413 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 414 | spinlock_t page_table_lock; /* Protects page tables and some counters */ |
Richard Kennedy | 481b4bb | 2011-03-22 16:32:50 -0700 | [diff] [blame] | 415 | struct rw_semaphore mmap_sem; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 416 | |
| 417 | struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung |
| 418 | * together off init_mm.mmlist, and are protected |
| 419 | * by mmlist_lock |
| 420 | */ |
| 421 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 422 | |
| 423 | unsigned long hiwater_rss; /* High-watermark of RSS usage */ |
| 424 | unsigned long hiwater_vm; /* High-water virtual memory usage */ |
| 425 | |
Christoph Lameter | e10d59f | 2011-10-31 17:07:34 -0700 | [diff] [blame] | 426 | unsigned long total_vm; /* Total pages mapped */ |
| 427 | unsigned long locked_vm; /* Pages that have PG_mlocked set */ |
| 428 | unsigned long pinned_vm; /* Refcount permanently increased */ |
| 429 | unsigned long shared_vm; /* Shared pages (files) */ |
| 430 | unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE */ |
| 431 | unsigned long stack_vm; /* VM_GROWSUP/DOWN */ |
Christoph Lameter | e10d59f | 2011-10-31 17:07:34 -0700 | [diff] [blame] | 432 | unsigned long def_flags; |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 433 | unsigned long start_code, end_code, start_data, end_data; |
| 434 | unsigned long start_brk, brk, start_stack; |
| 435 | unsigned long arg_start, arg_end, env_start, env_end; |
| 436 | |
| 437 | unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */ |
| 438 | |
KAMEZAWA Hiroyuki | d559db0 | 2010-03-05 13:41:39 -0800 | [diff] [blame] | 439 | /* |
| 440 | * Special counters, in some configurations protected by the |
| 441 | * page_table_lock, in other configurations by being atomic. |
| 442 | */ |
| 443 | struct mm_rss_stat rss_stat; |
| 444 | |
Hiroshi Shimamoto | 801460d | 2009-09-23 15:57:41 -0700 | [diff] [blame] | 445 | struct linux_binfmt *binfmt; |
| 446 | |
Linus Torvalds | 6345d24 | 2011-05-29 11:32:28 -0700 | [diff] [blame] | 447 | cpumask_var_t cpu_vm_mask_var; |
| 448 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 449 | /* Architecture-specific MM context */ |
| 450 | mm_context_t context; |
| 451 | |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 452 | unsigned long flags; /* Must use atomic bitops to access the bits */ |
| 453 | |
Oleg Nesterov | a94e2d4 | 2008-07-25 01:47:46 -0700 | [diff] [blame] | 454 | struct core_state *core_state; /* coredumping support */ |
Alexey Dobriyan | 858f099 | 2009-09-23 15:57:32 -0700 | [diff] [blame] | 455 | #ifdef CONFIG_AIO |
Benjamin LaHaise | db446a0 | 2013-07-30 12:54:40 -0400 | [diff] [blame] | 456 | spinlock_t ioctx_lock; |
| 457 | struct kioctx_table __rcu *ioctx_table; |
Alexey Dobriyan | 858f099 | 2009-09-23 15:57:32 -0700 | [diff] [blame] | 458 | #endif |
Oleg Nesterov | f98bafa | 2014-06-04 16:07:34 -0700 | [diff] [blame] | 459 | #ifdef CONFIG_MEMCG |
KOSAKI Motohiro | 4cd1a8f | 2008-05-12 14:02:31 -0700 | [diff] [blame] | 460 | /* |
| 461 | * "owner" points to a task that is regarded as the canonical |
| 462 | * user/owner of this mm. All of the following must be true in |
| 463 | * order for it to be changed: |
| 464 | * |
| 465 | * current == mm->owner |
| 466 | * current->mm != mm |
| 467 | * new_owner->mm == mm |
| 468 | * new_owner->alloc_lock is held |
| 469 | */ |
Arnd Bergmann | 4d2deb4 | 2010-02-24 20:01:56 +0100 | [diff] [blame] | 470 | struct task_struct __rcu *owner; |
Pavel Emelianov | 78fb746 | 2008-02-07 00:13:51 -0800 | [diff] [blame] | 471 | #endif |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 472 | |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 473 | /* store ref to file /proc/<pid>/exe symlink points to */ |
Konstantin Khlebnikov | 90f31d0 | 2015-04-16 12:47:56 -0700 | [diff] [blame] | 474 | struct file __rcu *exe_file; |
Andrea Arcangeli | cddb8a5 | 2008-07-28 15:46:29 -0700 | [diff] [blame] | 475 | #ifdef CONFIG_MMU_NOTIFIER |
| 476 | struct mmu_notifier_mm *mmu_notifier_mm; |
| 477 | #endif |
Kirill A. Shutemov | e009bb3 | 2013-11-14 14:31:07 -0800 | [diff] [blame] | 478 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS |
Andrea Arcangeli | e7a00c4 | 2011-01-13 15:46:45 -0800 | [diff] [blame] | 479 | pgtable_t pmd_huge_pte; /* protected by page_table_lock */ |
| 480 | #endif |
Linus Torvalds | 6345d24 | 2011-05-29 11:32:28 -0700 | [diff] [blame] | 481 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 482 | struct cpumask cpumask_allocation; |
| 483 | #endif |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 484 | #ifdef CONFIG_NUMA_BALANCING |
| 485 | /* |
Mel Gorman | 34f0315 | 2013-02-22 16:34:25 -0800 | [diff] [blame] | 486 | * numa_next_scan is the next time that the PTEs will be marked |
| 487 | * pte_numa. NUMA hinting faults will gather statistics and migrate |
| 488 | * pages to new nodes if necessary. |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 489 | */ |
| 490 | unsigned long numa_next_scan; |
| 491 | |
Peter Zijlstra | 6e5fb22 | 2012-10-25 14:16:45 +0200 | [diff] [blame] | 492 | /* Restart point for scanning and setting pte_numa */ |
| 493 | unsigned long numa_scan_offset; |
| 494 | |
Peter Zijlstra | cbee9f8 | 2012-10-25 14:16:43 +0200 | [diff] [blame] | 495 | /* numa_scan_seq prevents two threads setting pte_numa */ |
| 496 | int numa_scan_seq; |
| 497 | #endif |
Rik van Riel | 2084140 | 2013-12-18 17:08:44 -0800 | [diff] [blame] | 498 | #if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION) |
| 499 | /* |
| 500 | * An operation with batched TLB flushing is going on. Anything that |
| 501 | * can move process memory needs to flush the TLB when moving a |
| 502 | * PROT_NONE or PROT_NUMA mapped page. |
| 503 | */ |
| 504 | bool tlb_flush_pending; |
| 505 | #endif |
Srikar Dronamraju | d4b3b63 | 2012-03-30 23:56:31 +0530 | [diff] [blame] | 506 | struct uprobes_state uprobes_state; |
Dave Hansen | fe3d197 | 2014-11-14 07:18:29 -0800 | [diff] [blame] | 507 | #ifdef CONFIG_X86_INTEL_MPX |
| 508 | /* address of the bounds directory */ |
| 509 | void __user *bd_addr; |
| 510 | #endif |
Naoya Horiguchi | 5d317b2 | 2015-11-05 18:47:14 -0800 | [diff] [blame] | 511 | #ifdef CONFIG_HUGETLB_PAGE |
| 512 | atomic_long_t hugetlb_usage; |
| 513 | #endif |
Martin Schwidefsky | c92ff1b | 2007-10-16 01:24:43 -0700 | [diff] [blame] | 514 | }; |
| 515 | |
Linus Torvalds | 6345d24 | 2011-05-29 11:32:28 -0700 | [diff] [blame] | 516 | static inline void mm_init_cpumask(struct mm_struct *mm) |
| 517 | { |
| 518 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 519 | mm->cpu_vm_mask_var = &mm->cpumask_allocation; |
| 520 | #endif |
Vladimir Davydov | 41f727f | 2014-08-08 14:21:56 -0700 | [diff] [blame] | 521 | cpumask_clear(mm->cpu_vm_mask_var); |
Linus Torvalds | 6345d24 | 2011-05-29 11:32:28 -0700 | [diff] [blame] | 522 | } |
| 523 | |
Rusty Russell | 45e575a | 2009-03-12 14:35:44 -0600 | [diff] [blame] | 524 | /* Future-safe accessor for struct mm_struct's cpu_vm_mask. */ |
KOSAKI Motohiro | de03c72 | 2011-05-24 17:12:15 -0700 | [diff] [blame] | 525 | static inline cpumask_t *mm_cpumask(struct mm_struct *mm) |
| 526 | { |
| 527 | return mm->cpu_vm_mask_var; |
| 528 | } |
Rusty Russell | 45e575a | 2009-03-12 14:35:44 -0600 | [diff] [blame] | 529 | |
Rik van Riel | 2084140 | 2013-12-18 17:08:44 -0800 | [diff] [blame] | 530 | #if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION) |
| 531 | /* |
| 532 | * Memory barriers to keep this state in sync are graciously provided by |
| 533 | * the page table locks, outside of which no page table modifications happen. |
| 534 | * The barriers below prevent the compiler from re-ordering the instructions |
| 535 | * around the memory barriers that are already present in the code. |
| 536 | */ |
| 537 | static inline bool mm_tlb_flush_pending(struct mm_struct *mm) |
| 538 | { |
| 539 | barrier(); |
| 540 | return mm->tlb_flush_pending; |
| 541 | } |
| 542 | static inline void set_tlb_flush_pending(struct mm_struct *mm) |
| 543 | { |
| 544 | mm->tlb_flush_pending = true; |
Mel Gorman | af2c140 | 2013-12-18 17:08:45 -0800 | [diff] [blame] | 545 | |
| 546 | /* |
| 547 | * Guarantee that the tlb_flush_pending store does not leak into the |
| 548 | * critical section updating the page tables |
| 549 | */ |
| 550 | smp_mb__before_spinlock(); |
Rik van Riel | 2084140 | 2013-12-18 17:08:44 -0800 | [diff] [blame] | 551 | } |
| 552 | /* Clearing is done after a TLB flush, which also provides a barrier. */ |
| 553 | static inline void clear_tlb_flush_pending(struct mm_struct *mm) |
| 554 | { |
| 555 | barrier(); |
| 556 | mm->tlb_flush_pending = false; |
| 557 | } |
| 558 | #else |
| 559 | static inline bool mm_tlb_flush_pending(struct mm_struct *mm) |
| 560 | { |
| 561 | return false; |
| 562 | } |
| 563 | static inline void set_tlb_flush_pending(struct mm_struct *mm) |
| 564 | { |
| 565 | } |
| 566 | static inline void clear_tlb_flush_pending(struct mm_struct *mm) |
| 567 | { |
| 568 | } |
| 569 | #endif |
| 570 | |
Andy Lutomirski | a62c34b | 2014-05-19 15:58:33 -0700 | [diff] [blame] | 571 | struct vm_special_mapping |
| 572 | { |
| 573 | const char *name; |
| 574 | struct page **pages; |
| 575 | }; |
| 576 | |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 577 | enum tlb_flush_reason { |
| 578 | TLB_FLUSH_ON_TASK_SWITCH, |
| 579 | TLB_REMOTE_SHOOTDOWN, |
| 580 | TLB_LOCAL_SHOOTDOWN, |
| 581 | TLB_LOCAL_MM_SHOOTDOWN, |
Mel Gorman | 5b74283 | 2015-09-04 15:47:29 -0700 | [diff] [blame] | 582 | TLB_REMOTE_SEND_IPI, |
Dave Hansen | d17d8f9 | 2014-07-31 08:40:59 -0700 | [diff] [blame] | 583 | NR_TLB_FLUSH_REASONS, |
| 584 | }; |
| 585 | |
Tejun Heo | bd6dace | 2014-12-12 16:55:35 -0800 | [diff] [blame] | 586 | /* |
| 587 | * A swap entry has to fit into a "unsigned long", as the entry is hidden |
| 588 | * in the "index" field of the swapper address space. |
| 589 | */ |
| 590 | typedef struct { |
| 591 | unsigned long val; |
| 592 | } swp_entry_t; |
| 593 | |
Heiko Carstens | 5b99cd0 | 2006-09-27 01:50:01 -0700 | [diff] [blame] | 594 | #endif /* _LINUX_MM_TYPES_H */ |