blob: d3ebb9d21a5334d26e85bc865d318535f5864569 [file] [log] [blame]
Heiko Carstens5b99cd02006-09-27 01:50:01 -07001#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
Olaf Hering4f9a58d2007-10-16 23:30:12 -07004#include <linux/auxvec.h>
Heiko Carstens5b99cd02006-09-27 01:50:01 -07005#include <linux/types.h>
6#include <linux/threads.h>
7#include <linux/list.h>
8#include <linux/spinlock.h>
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -07009#include <linux/rbtree.h>
10#include <linux/rwsem.h>
11#include <linux/completion.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070012#include <linux/cpumask.h>
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +053013#include <linux/uprobes.h>
Peter Zijlstrabbeae5b2013-02-22 16:34:30 -080014#include <linux/page-flags-layout.h>
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -070015#include <asm/page.h>
16#include <asm/mmu.h>
Heiko Carstens5b99cd02006-09-27 01:50:01 -070017
Olaf Hering4f9a58d2007-10-16 23:30:12 -070018#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 Carstens5b99cd02006-09-27 01:50:01 -070023struct address_space;
Johannes Weiner1306a852014-12-10 15:44:52 -080024struct mem_cgroup;
Heiko Carstens5b99cd02006-09-27 01:50:01 -070025
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -080026#define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
Kirill A. Shutemove009bb32013-11-14 14:31:07 -080027#define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \
28 IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK))
Kirill A. Shutemov597d7952013-12-20 13:35:58 +020029#define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8)
Jeremy Fitzhardingef7d0b922008-09-09 15:43:22 -070030
Heiko Carstens5b99cd02006-09-27 01:50:01 -070031/*
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 Lameterfc9bb8c2011-06-01 12:25:48 -050037 *
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 Carstens5b99cd02006-09-27 01:50:01 -070043 */
44struct page {
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050045 /* First double word block */
Heiko Carstens5b99cd02006-09-27 01:50:01 -070046 unsigned long flags; /* Atomic flags, some possibly
47 * updated asynchronously */
Joonsoo Kim8456a642013-10-24 10:07:49 +090048 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 */
Kirill A. Shutemov53f92632016-01-15 16:53:42 -080057 atomic_t compound_mapcount; /* first tail page */
Kirill A. Shutemov9a982252016-01-15 16:54:17 -080058 /* page_deferred_list().next -- second tail page */
Joonsoo Kim8456a642013-10-24 10:07:49 +090059 };
60
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050061 /* Second double word */
Christoph Lameter013e8962011-07-14 12:48:14 -050062 struct {
63 union {
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050064 pgoff_t index; /* Our offset within mapping. */
Joonsoo Kim8456a642013-10-24 10:07:49 +090065 void *freelist; /* sl[aou]b first free object */
Kirill A. Shutemov9a982252016-01-15 16:54:17 -080066 /* page_deferred_list().prev -- second tail page */
Christoph Lameter013e8962011-07-14 12:48:14 -050067 };
68
69 union {
Pravin B Shelarabca7c42012-06-20 12:52:56 -070070#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
71 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameter013e8962011-07-14 12:48:14 -050072 /* Used for cmpxchg_double in slub */
73 unsigned long counters;
Pravin B Shelarabca7c42012-06-20 12:52:56 -070074#else
75 /*
76 * Keep _count separate from slub cmpxchg_double data.
77 * As the rest of the double word is protected by
78 * slab_lock but _count is not.
79 */
80 unsigned counters;
81#endif
Christoph Lameter013e8962011-07-14 12:48:14 -050082
83 struct {
84
85 union {
Andrea Arcangeli70b50f92011-11-02 13:36:59 -070086 /*
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -080087 * Count of ptes mapped in mms, to show
88 * when page is mapped & limit reverse
89 * map searches.
Andrea Arcangeli70b50f92011-11-02 13:36:59 -070090 */
91 atomic_t _mapcount;
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -050092
Christoph Lameterb8c24c42012-06-13 10:24:52 -050093 struct { /* SLUB */
Christoph Lameter013e8962011-07-14 12:48:14 -050094 unsigned inuse:16;
95 unsigned objects:15;
96 unsigned frozen:1;
97 };
Christoph Lameterb8c24c42012-06-13 10:24:52 -050098 int units; /* SLOB */
Pekka Enberg3adf0042011-07-18 15:16:55 +030099 };
Christoph Lameter013e8962011-07-14 12:48:14 -0500100 atomic_t _count; /* Usage count, see below. */
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500101 };
Joonsoo Kim8456a642013-10-24 10:07:49 +0900102 unsigned int active; /* SLAB */
Christoph Lameter39b26462008-04-14 19:11:30 +0300103 };
Christoph Lameter81819f02007-05-06 14:49:36 -0700104 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500105
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800106 /*
107 * Third double word block
108 *
109 * WARNING: bit 0 of the first word encode PageTail(). That means
110 * the rest users of the storage space MUST NOT use the bit to
111 * avoid collision and false-positive PageTail().
112 */
Christoph Lameter49e22582011-08-09 16:12:27 -0500113 union {
114 struct list_head lru; /* Pageout list, eg. active_list
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500115 * protected by zone->lru_lock !
Dave Hansen34bf6ef2014-04-08 13:44:27 -0700116 * Can be used as a generic list
117 * by the page owner.
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500118 */
Dan Williams5c2c2582016-01-15 16:56:49 -0800119 struct dev_pagemap *pgmap; /* ZONE_DEVICE pages are never on an
120 * lru or handled by a slab
121 * allocator, this points to the
122 * hosting device page map.
123 */
Christoph Lameter49e22582011-08-09 16:12:27 -0500124 struct { /* slub per cpu partial pages */
125 struct page *next; /* Next partial slab */
126#ifdef CONFIG_64BIT
127 int pages; /* Nr of partial slabs left */
128 int pobjects; /* Approximate # of objects */
129#else
130 short int pages;
131 short int pobjects;
132#endif
133 };
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500134
Joonsoo Kim68126702013-10-24 10:07:42 +0900135 struct rcu_head rcu_head; /* Used by SLAB
136 * when destroying via RCU
137 */
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800138 /* Tail pages of compound page */
Kirill A. Shutemove4b294c2015-02-11 15:24:46 -0800139 struct {
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800140 unsigned long compound_head; /* If bit zero is set */
141
142 /* First tail page only */
Kirill A. Shutemov1965c8b2015-11-06 16:30:00 -0800143#ifdef CONFIG_64BIT
144 /*
145 * On 64 bit system we have enough space in struct page
146 * to encode compound_dtor and compound_order with
147 * unsigned int. It can help compiler generate better or
148 * smaller code on some archtectures.
149 */
150 unsigned int compound_dtor;
151 unsigned int compound_order;
152#else
Kirill A. Shutemovf1e61552015-11-06 16:29:50 -0800153 unsigned short int compound_dtor;
154 unsigned short int compound_order;
Kirill A. Shutemov1965c8b2015-11-06 16:30:00 -0800155#endif
Kirill A. Shutemove4b294c2015-02-11 15:24:46 -0800156 };
157
Kirill A. Shutemov7aa555b2013-11-21 14:32:11 -0800158#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
Kirill A. Shutemov1d798ca2015-11-06 16:29:54 -0800159 struct {
160 unsigned long __pad; /* do not overlay pmd_huge_pte
161 * with compound_head to avoid
162 * possible bit 0 collision.
163 */
164 pgtable_t pmd_huge_pte; /* protected by page->ptl */
165 };
Kirill A. Shutemov7aa555b2013-11-21 14:32:11 -0800166#endif
Christoph Lameter49e22582011-08-09 16:12:27 -0500167 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500168
169 /* Remainder is not double word aligned */
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700170 union {
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700171 unsigned long private; /* Mapping-private opaque data:
172 * usually used for buffer_heads
173 * if PagePrivate set; used for
174 * swp_entry_t if PageSwapCache;
175 * indicates order in the buddy
176 * system if PG_buddy is set.
177 */
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800178#if USE_SPLIT_PTE_PTLOCKS
Kirill A. Shutemov597d7952013-12-20 13:35:58 +0200179#if ALLOC_SPLIT_PTLOCKS
Peter Zijlstra539edb52013-11-14 14:31:52 -0800180 spinlock_t *ptl;
181#else
182 spinlock_t ptl;
183#endif
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700184#endif
Glauber Costa1b4f59e32012-10-22 18:05:36 +0400185 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700186 };
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500187
Johannes Weiner1306a852014-12-10 15:44:52 -0800188#ifdef CONFIG_MEMCG
189 struct mem_cgroup *mem_cgroup;
190#endif
191
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700192 /*
193 * On machines where all RAM is mapped into kernel address space,
194 * we can simply calculate the virtual address. On machines with
195 * highmem some memory is mapped into kernel virtual memory
196 * dynamically, so we need a place to store that address.
197 * Note that this field could be 16 bits on x86 ... ;)
198 *
199 * Architectures with slow multiplication can define
200 * WANT_PAGE_VIRTUAL in asm/page.h
201 */
202#if defined(WANT_PAGE_VIRTUAL)
203 void *virtual; /* Kernel virtual address (NULL if
204 not kmapped, ie. highmem) */
205#endif /* WANT_PAGE_VIRTUAL */
Vegard Nossumdfec0722008-04-04 00:51:41 +0200206
207#ifdef CONFIG_KMEMCHECK
208 /*
209 * kmemcheck wants to track the status of each byte in a page; this
210 * is a pointer to such a status block. NULL if not tracked.
211 */
212 void *shadow;
213#endif
Mel Gorman57e0a032012-11-12 09:06:20 +0000214
Peter Zijlstra90572892013-10-07 11:29:20 +0100215#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
216 int _last_cpupid;
Mel Gorman57e0a032012-11-12 09:06:20 +0000217#endif
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500218}
219/*
Heiko Carstens43570fd2012-01-12 17:17:27 -0800220 * The struct page can be forced to be double word aligned so that atomic ops
221 * on double words work. The SLUB allocator can make use of such a feature.
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500222 */
Heiko Carstens43570fd2012-01-12 17:17:27 -0800223#ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
224 __aligned(2 * sizeof(unsigned long))
Christoph Lameterfc9bb8c2011-06-01 12:25:48 -0500225#endif
226;
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700227
Ian Campbell30d3c122011-10-20 04:58:32 -0400228struct page_frag {
229 struct page *page;
230#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
231 __u32 offset;
232 __u32 size;
233#else
234 __u16 offset;
235 __u16 size;
236#endif
237};
238
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700239#define PAGE_FRAG_CACHE_MAX_SIZE __ALIGN_MASK(32768, ~PAGE_MASK)
240#define PAGE_FRAG_CACHE_MAX_ORDER get_order(PAGE_FRAG_CACHE_MAX_SIZE)
241
242struct page_frag_cache {
243 void * va;
244#if (PAGE_SIZE < PAGE_FRAG_CACHE_MAX_SIZE)
245 __u16 offset;
246 __u16 size;
247#else
248 __u32 offset;
249#endif
250 /* we maintain a pagecount bias, so that we dont dirty cache line
251 * containing page->_count every time we allocate a fragment.
252 */
253 unsigned int pagecnt_bias;
254 bool pfmemalloc;
255};
256
Kirill A. Shutemov64b990d2015-09-08 15:02:15 -0700257typedef unsigned long vm_flags_t;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900258
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700259/*
David Howells8feae132009-01-08 12:04:47 +0000260 * A region containing a mapping of a non-memory backed file under NOMMU
261 * conditions. These are held in a global tree and are pinned by the VMAs that
262 * map parts of them.
263 */
264struct vm_region {
265 struct rb_node vm_rb; /* link in global region tree */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900266 vm_flags_t vm_flags; /* VMA vm_flags */
David Howells8feae132009-01-08 12:04:47 +0000267 unsigned long vm_start; /* start address of region */
268 unsigned long vm_end; /* region initialised to here */
Paul Mundtdd8632a2009-01-08 12:04:47 +0000269 unsigned long vm_top; /* region allocated to here */
David Howells8feae132009-01-08 12:04:47 +0000270 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
271 struct file *vm_file; /* the backing file or NULL */
272
David Howells1e2ae592010-01-15 17:01:33 -0800273 int vm_usage; /* region usage count (access under nommu_region_sem) */
Mike Frysingercfe79c02010-01-06 17:23:23 +0000274 bool vm_icache_flushed : 1; /* true if the icache has been flushed for
275 * this region */
David Howells8feae132009-01-08 12:04:47 +0000276};
277
Andrea Arcangeli745f2342015-09-04 15:46:14 -0700278#ifdef CONFIG_USERFAULTFD
279#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) { NULL, })
280struct vm_userfaultfd_ctx {
281 struct userfaultfd_ctx *ctx;
282};
283#else /* CONFIG_USERFAULTFD */
284#define NULL_VM_UFFD_CTX ((struct vm_userfaultfd_ctx) {})
285struct vm_userfaultfd_ctx {};
286#endif /* CONFIG_USERFAULTFD */
287
David Howells8feae132009-01-08 12:04:47 +0000288/*
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700289 * This struct defines a memory VMM memory area. There is one of these
290 * per VM-area/task. A VM area is any part of the process virtual memory
291 * space that has a special rule for the page-fault handlers (ie a shared
292 * library, the executable area etc).
293 */
294struct vm_area_struct {
Rik van Riele4c6bfd2012-12-11 16:01:44 -0800295 /* The first cache line has the info for VMA tree walking. */
296
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700297 unsigned long vm_start; /* Our start address within vm_mm. */
298 unsigned long vm_end; /* The first byte after our end address
299 within vm_mm. */
300
301 /* linked list of VM areas per task, sorted by address */
Linus Torvalds297c5ee2010-08-20 16:24:55 -0700302 struct vm_area_struct *vm_next, *vm_prev;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700303
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700304 struct rb_node vm_rb;
305
306 /*
Michel Lespinassed3737182012-12-11 16:01:38 -0800307 * Largest free memory gap in bytes to the left of this VMA.
308 * Either between this VMA and vma->vm_prev, or between one of the
309 * VMAs below us in the VMA rbtree and its ->vm_prev. This helps
310 * get_unmapped_area find a free area of the right size.
311 */
312 unsigned long rb_subtree_gap;
313
Rik van Riele4c6bfd2012-12-11 16:01:44 -0800314 /* Second cache line starts here. */
315
316 struct mm_struct *vm_mm; /* The address space we belong to. */
317 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
318 unsigned long vm_flags; /* Flags, see mm.h. */
319
Michel Lespinassed3737182012-12-11 16:01:38 -0800320 /*
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700321 * For areas with an address space and backing store,
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800322 * linkage into the address_space->i_mmap interval tree.
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700323 */
Kirill A. Shutemovac51b932015-02-10 14:10:02 -0800324 struct {
325 struct rb_node rb;
326 unsigned long rb_subtree_last;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700327 } shared;
328
329 /*
330 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
331 * list, after a COW of one of the file pages. A MAP_SHARED vma
332 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
333 * or brk vma (with NULL file) can only be in an anon_vma list.
334 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800335 struct list_head anon_vma_chain; /* Serialized by mmap_sem &
336 * page_table_lock */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700337 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
338
339 /* Function pointers to deal with this struct. */
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400340 const struct vm_operations_struct *vm_ops;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700341
342 /* Information about our backing store: */
343 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
344 units, *not* PAGE_CACHE_SIZE */
345 struct file * vm_file; /* File we map to (can be NULL). */
346 void * vm_private_data; /* was vm_pte (shared mem) */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700347
348#ifndef CONFIG_MMU
David Howells8feae132009-01-08 12:04:47 +0000349 struct vm_region *vm_region; /* NOMMU mapping region */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700350#endif
351#ifdef CONFIG_NUMA
352 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
353#endif
Andrea Arcangeli745f2342015-09-04 15:46:14 -0700354 struct vm_userfaultfd_ctx vm_userfaultfd_ctx;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700355};
356
Oleg Nesterovb564daf2008-07-25 01:47:44 -0700357struct core_thread {
358 struct task_struct *task;
359 struct core_thread *next;
360};
361
Oleg Nesterov32ecb1f2008-07-25 01:47:41 -0700362struct core_state {
Oleg Nesterovc5f1cc82008-07-25 01:47:42 -0700363 atomic_t nr_threads;
Oleg Nesterovb564daf2008-07-25 01:47:44 -0700364 struct core_thread dumper;
Oleg Nesterov32ecb1f2008-07-25 01:47:41 -0700365 struct completion startup;
366};
367
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800368enum {
Jerome Marchandeca56ff2016-01-14 15:19:26 -0800369 MM_FILEPAGES, /* Resident file mapping pages */
370 MM_ANONPAGES, /* Resident anonymous pages */
371 MM_SWAPENTS, /* Anonymous swap entries */
372 MM_SHMEMPAGES, /* Resident shared memory pages */
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800373 NR_MM_COUNTERS
374};
375
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800376#if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU)
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800377#define SPLIT_RSS_COUNTING
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800378/* per-thread cached information, */
379struct task_rss_stat {
380 int events; /* for synchronization threshold */
381 int count[NR_MM_COUNTERS];
382};
Kirill A. Shutemov57c1ffc2013-11-14 14:30:45 -0800383#endif /* USE_SPLIT_PTE_PTLOCKS */
Matt Fleming172703b2011-05-24 17:12:36 -0700384
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800385struct mm_rss_stat {
Matt Fleming172703b2011-05-24 17:12:36 -0700386 atomic_long_t count[NR_MM_COUNTERS];
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800387};
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800388
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400389struct kioctx_table;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700390struct mm_struct {
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700391 struct vm_area_struct *mmap; /* list of VMAs */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700392 struct rb_root mm_rb;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -0700393 u32 vmacache_seqnum; /* per-thread vmacache */
David Howellsefc1a3b2010-01-15 17:01:35 -0800394#ifdef CONFIG_MMU
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700395 unsigned long (*get_unmapped_area) (struct file *filp,
396 unsigned long addr, unsigned long len,
397 unsigned long pgoff, unsigned long flags);
David Howellsefc1a3b2010-01-15 17:01:35 -0800398#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700399 unsigned long mmap_base; /* base of mmap area */
Radu Caragea41aacc12013-08-21 20:55:59 +0300400 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700401 unsigned long task_size; /* size of task vm space */
Michel Lespinassed3737182012-12-11 16:01:38 -0800402 unsigned long highest_vm_end; /* highest vma end address */
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700403 pgd_t * pgd;
404 atomic_t mm_users; /* How many users with user space? */
405 atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800406 atomic_long_t nr_ptes; /* PTE page table pages */
Kirill A. Shutemov5a3fbef2015-04-14 15:46:21 -0700407#if CONFIG_PGTABLE_LEVELS > 2
Kirill A. Shutemovdc6c9a32015-02-11 15:26:50 -0800408 atomic_long_t nr_pmds; /* PMD page table pages */
Kirill A. Shutemov5a3fbef2015-04-14 15:46:21 -0700409#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700410 int map_count; /* number of VMAs */
Richard Kennedy481b4bb2011-03-22 16:32:50 -0700411
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700412 spinlock_t page_table_lock; /* Protects page tables and some counters */
Richard Kennedy481b4bb2011-03-22 16:32:50 -0700413 struct rw_semaphore mmap_sem;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700414
415 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
416 * together off init_mm.mmlist, and are protected
417 * by mmlist_lock
418 */
419
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700420
421 unsigned long hiwater_rss; /* High-watermark of RSS usage */
422 unsigned long hiwater_vm; /* High-water virtual memory usage */
423
Christoph Lametere10d59f2011-10-31 17:07:34 -0700424 unsigned long total_vm; /* Total pages mapped */
425 unsigned long locked_vm; /* Pages that have PG_mlocked set */
426 unsigned long pinned_vm; /* Refcount permanently increased */
Konstantin Khlebnikov84638332016-01-14 15:22:07 -0800427 unsigned long data_vm; /* VM_WRITE & ~VM_SHARED/GROWSDOWN */
Christoph Lametere10d59f2011-10-31 17:07:34 -0700428 unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE */
429 unsigned long stack_vm; /* VM_GROWSUP/DOWN */
Christoph Lametere10d59f2011-10-31 17:07:34 -0700430 unsigned long def_flags;
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700431 unsigned long start_code, end_code, start_data, end_data;
432 unsigned long start_brk, brk, start_stack;
433 unsigned long arg_start, arg_end, env_start, env_end;
434
435 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
436
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800437 /*
438 * Special counters, in some configurations protected by the
439 * page_table_lock, in other configurations by being atomic.
440 */
441 struct mm_rss_stat rss_stat;
442
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -0700443 struct linux_binfmt *binfmt;
444
Linus Torvalds6345d242011-05-29 11:32:28 -0700445 cpumask_var_t cpu_vm_mask_var;
446
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700447 /* Architecture-specific MM context */
448 mm_context_t context;
449
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700450 unsigned long flags; /* Must use atomic bitops to access the bits */
451
Oleg Nesterova94e2d42008-07-25 01:47:46 -0700452 struct core_state *core_state; /* coredumping support */
Alexey Dobriyan858f0992009-09-23 15:57:32 -0700453#ifdef CONFIG_AIO
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400454 spinlock_t ioctx_lock;
455 struct kioctx_table __rcu *ioctx_table;
Alexey Dobriyan858f0992009-09-23 15:57:32 -0700456#endif
Oleg Nesterovf98bafa2014-06-04 16:07:34 -0700457#ifdef CONFIG_MEMCG
KOSAKI Motohiro4cd1a8f2008-05-12 14:02:31 -0700458 /*
459 * "owner" points to a task that is regarded as the canonical
460 * user/owner of this mm. All of the following must be true in
461 * order for it to be changed:
462 *
463 * current == mm->owner
464 * current->mm != mm
465 * new_owner->mm == mm
466 * new_owner->alloc_lock is held
467 */
Arnd Bergmann4d2deb42010-02-24 20:01:56 +0100468 struct task_struct __rcu *owner;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800469#endif
Matt Helsley925d1c42008-04-29 01:01:36 -0700470
Matt Helsley925d1c42008-04-29 01:01:36 -0700471 /* store ref to file /proc/<pid>/exe symlink points to */
Konstantin Khlebnikov90f31d02015-04-16 12:47:56 -0700472 struct file __rcu *exe_file;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700473#ifdef CONFIG_MMU_NOTIFIER
474 struct mmu_notifier_mm *mmu_notifier_mm;
475#endif
Kirill A. Shutemove009bb32013-11-14 14:31:07 -0800476#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
Andrea Arcangelie7a00c42011-01-13 15:46:45 -0800477 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
478#endif
Linus Torvalds6345d242011-05-29 11:32:28 -0700479#ifdef CONFIG_CPUMASK_OFFSTACK
480 struct cpumask cpumask_allocation;
481#endif
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200482#ifdef CONFIG_NUMA_BALANCING
483 /*
Mel Gorman34f03152013-02-22 16:34:25 -0800484 * numa_next_scan is the next time that the PTEs will be marked
485 * pte_numa. NUMA hinting faults will gather statistics and migrate
486 * pages to new nodes if necessary.
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200487 */
488 unsigned long numa_next_scan;
489
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200490 /* Restart point for scanning and setting pte_numa */
491 unsigned long numa_scan_offset;
492
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200493 /* numa_scan_seq prevents two threads setting pte_numa */
494 int numa_scan_seq;
495#endif
Rik van Riel20841402013-12-18 17:08:44 -0800496#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
497 /*
498 * An operation with batched TLB flushing is going on. Anything that
499 * can move process memory needs to flush the TLB when moving a
500 * PROT_NONE or PROT_NUMA mapped page.
501 */
502 bool tlb_flush_pending;
503#endif
Srikar Dronamrajud4b3b632012-03-30 23:56:31 +0530504 struct uprobes_state uprobes_state;
Dave Hansenfe3d1972014-11-14 07:18:29 -0800505#ifdef CONFIG_X86_INTEL_MPX
506 /* address of the bounds directory */
507 void __user *bd_addr;
508#endif
Naoya Horiguchi5d317b22015-11-05 18:47:14 -0800509#ifdef CONFIG_HUGETLB_PAGE
510 atomic_long_t hugetlb_usage;
511#endif
Martin Schwidefskyc92ff1b2007-10-16 01:24:43 -0700512};
513
Linus Torvalds6345d242011-05-29 11:32:28 -0700514static inline void mm_init_cpumask(struct mm_struct *mm)
515{
516#ifdef CONFIG_CPUMASK_OFFSTACK
517 mm->cpu_vm_mask_var = &mm->cpumask_allocation;
518#endif
Vladimir Davydov41f727f2014-08-08 14:21:56 -0700519 cpumask_clear(mm->cpu_vm_mask_var);
Linus Torvalds6345d242011-05-29 11:32:28 -0700520}
521
Rusty Russell45e575a2009-03-12 14:35:44 -0600522/* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
KOSAKI Motohirode03c722011-05-24 17:12:15 -0700523static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
524{
525 return mm->cpu_vm_mask_var;
526}
Rusty Russell45e575a2009-03-12 14:35:44 -0600527
Rik van Riel20841402013-12-18 17:08:44 -0800528#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
529/*
530 * Memory barriers to keep this state in sync are graciously provided by
531 * the page table locks, outside of which no page table modifications happen.
532 * The barriers below prevent the compiler from re-ordering the instructions
533 * around the memory barriers that are already present in the code.
534 */
535static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
536{
537 barrier();
538 return mm->tlb_flush_pending;
539}
540static inline void set_tlb_flush_pending(struct mm_struct *mm)
541{
542 mm->tlb_flush_pending = true;
Mel Gormanaf2c1402013-12-18 17:08:45 -0800543
544 /*
545 * Guarantee that the tlb_flush_pending store does not leak into the
546 * critical section updating the page tables
547 */
548 smp_mb__before_spinlock();
Rik van Riel20841402013-12-18 17:08:44 -0800549}
550/* Clearing is done after a TLB flush, which also provides a barrier. */
551static inline void clear_tlb_flush_pending(struct mm_struct *mm)
552{
553 barrier();
554 mm->tlb_flush_pending = false;
555}
556#else
557static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
558{
559 return false;
560}
561static inline void set_tlb_flush_pending(struct mm_struct *mm)
562{
563}
564static inline void clear_tlb_flush_pending(struct mm_struct *mm)
565{
566}
567#endif
568
Andy Lutomirskia62c34b2014-05-19 15:58:33 -0700569struct vm_special_mapping
570{
571 const char *name;
572 struct page **pages;
573};
574
Dave Hansend17d8f92014-07-31 08:40:59 -0700575enum tlb_flush_reason {
576 TLB_FLUSH_ON_TASK_SWITCH,
577 TLB_REMOTE_SHOOTDOWN,
578 TLB_LOCAL_SHOOTDOWN,
579 TLB_LOCAL_MM_SHOOTDOWN,
Mel Gorman5b742832015-09-04 15:47:29 -0700580 TLB_REMOTE_SEND_IPI,
Dave Hansend17d8f92014-07-31 08:40:59 -0700581 NR_TLB_FLUSH_REASONS,
582};
583
Tejun Heobd6dace2014-12-12 16:55:35 -0800584 /*
585 * A swap entry has to fit into a "unsigned long", as the entry is hidden
586 * in the "index" field of the swapper address space.
587 */
588typedef struct {
589 unsigned long val;
590} swp_entry_t;
591
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700592#endif /* _LINUX_MM_TYPES_H */