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