proc: drop handling non-linear mappings
[deliverable/linux.git] / include / linux / mm_types.h
CommitLineData
5b99cd0e
HC
1#ifndef _LINUX_MM_TYPES_H
2#define _LINUX_MM_TYPES_H
3
4f9a58d7 4#include <linux/auxvec.h>
5b99cd0e
HC
5#include <linux/types.h>
6#include <linux/threads.h>
7#include <linux/list.h>
8#include <linux/spinlock.h>
c92ff1bd
MS
9#include <linux/rbtree.h>
10#include <linux/rwsem.h>
11#include <linux/completion.h>
cddb8a5c 12#include <linux/cpumask.h>
d4b3b638 13#include <linux/uprobes.h>
bbeae5b0 14#include <linux/page-flags-layout.h>
c92ff1bd
MS
15#include <asm/page.h>
16#include <asm/mmu.h>
5b99cd0e 17
4f9a58d7
OH
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
5b99cd0e 23struct address_space;
1306a85a 24struct mem_cgroup;
5b99cd0e 25
57c1ffce 26#define USE_SPLIT_PTE_PTLOCKS (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
e009bb30
KS
27#define USE_SPLIT_PMD_PTLOCKS (USE_SPLIT_PTE_PTLOCKS && \
28 IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK))
597d795a 29#define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8)
f7d0b926 30
5b99cd0e
HC
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.
fc9bb8c7
CL
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.
5b99cd0e
HC
43 */
44struct page {
fc9bb8c7 45 /* First double word block */
5b99cd0e
HC
46 unsigned long flags; /* Atomic flags, some possibly
47 * updated asynchronously */
8456a648
JK
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
fc9bb8c7 59 /* Second double word */
013e8963
CL
60 struct {
61 union {
fc9bb8c7 62 pgoff_t index; /* Our offset within mapping. */
8456a648 63 void *freelist; /* sl[aou]b first free object */
072bb0aa 64 bool pfmemalloc; /* If set by the page allocator,
b37f1dd0 65 * ALLOC_NO_WATERMARKS was set
072bb0aa
MG
66 * and the low watermark was not
67 * met implying that the system
68 * is under some pressure. The
69 * caller should try ensure
70 * this page is only used to
71 * free other pages.
72 */
013e8963
CL
73 };
74
75 union {
abca7c49
PS
76#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
77 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
013e8963
CL
78 /* Used for cmpxchg_double in slub */
79 unsigned long counters;
abca7c49
PS
80#else
81 /*
82 * Keep _count separate from slub cmpxchg_double data.
83 * As the rest of the double word is protected by
84 * slab_lock but _count is not.
85 */
86 unsigned counters;
87#endif
013e8963
CL
88
89 struct {
90
91 union {
70b50f94
AA
92 /*
93 * Count of ptes mapped in
94 * mms, to show when page is
95 * mapped & limit reverse map
96 * searches.
97 *
98 * Used also for tail pages
99 * refcounting instead of
100 * _count. Tail pages cannot
101 * be mapped and keeping the
102 * tail page _count zero at
103 * all times guarantees
104 * get_page_unless_zero() will
105 * never succeed on tail
106 * pages.
107 */
108 atomic_t _mapcount;
fc9bb8c7 109
b8c24c4a 110 struct { /* SLUB */
013e8963
CL
111 unsigned inuse:16;
112 unsigned objects:15;
113 unsigned frozen:1;
114 };
b8c24c4a 115 int units; /* SLOB */
3adf004d 116 };
013e8963 117 atomic_t _count; /* Usage count, see below. */
fc9bb8c7 118 };
8456a648 119 unsigned int active; /* SLAB */
39b26464 120 };
81819f0f 121 };
fc9bb8c7
CL
122
123 /* Third double word block */
49e22585
CL
124 union {
125 struct list_head lru; /* Pageout list, eg. active_list
fc9bb8c7 126 * protected by zone->lru_lock !
34bf6ef9
DH
127 * Can be used as a generic list
128 * by the page owner.
fc9bb8c7 129 */
49e22585
CL
130 struct { /* slub per cpu partial pages */
131 struct page *next; /* Next partial slab */
132#ifdef CONFIG_64BIT
133 int pages; /* Nr of partial slabs left */
134 int pobjects; /* Approximate # of objects */
135#else
136 short int pages;
137 short int pobjects;
138#endif
139 };
b8c24c4a 140
1b4f59e3 141 struct slab *slab_page; /* slab fields */
68126702
JK
142 struct rcu_head rcu_head; /* Used by SLAB
143 * when destroying via RCU
144 */
7aa555bf
KS
145#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
146 pgtable_t pmd_huge_pte; /* protected by page->ptl */
147#endif
49e22585 148 };
fc9bb8c7
CL
149
150 /* Remainder is not double word aligned */
5b99cd0e 151 union {
5b99cd0e
HC
152 unsigned long private; /* Mapping-private opaque data:
153 * usually used for buffer_heads
154 * if PagePrivate set; used for
155 * swp_entry_t if PageSwapCache;
156 * indicates order in the buddy
157 * system if PG_buddy is set.
158 */
57c1ffce 159#if USE_SPLIT_PTE_PTLOCKS
597d795a 160#if ALLOC_SPLIT_PTLOCKS
539edb58
PZ
161 spinlock_t *ptl;
162#else
163 spinlock_t ptl;
164#endif
5b99cd0e 165#endif
1b4f59e3 166 struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
fc9bb8c7 167 struct page *first_page; /* Compound tail pages */
81819f0f 168 };
fc9bb8c7 169
1306a85a
JW
170#ifdef CONFIG_MEMCG
171 struct mem_cgroup *mem_cgroup;
172#endif
173
5b99cd0e
HC
174 /*
175 * On machines where all RAM is mapped into kernel address space,
176 * we can simply calculate the virtual address. On machines with
177 * highmem some memory is mapped into kernel virtual memory
178 * dynamically, so we need a place to store that address.
179 * Note that this field could be 16 bits on x86 ... ;)
180 *
181 * Architectures with slow multiplication can define
182 * WANT_PAGE_VIRTUAL in asm/page.h
183 */
184#if defined(WANT_PAGE_VIRTUAL)
185 void *virtual; /* Kernel virtual address (NULL if
186 not kmapped, ie. highmem) */
187#endif /* WANT_PAGE_VIRTUAL */
dfec072e
VN
188
189#ifdef CONFIG_KMEMCHECK
190 /*
191 * kmemcheck wants to track the status of each byte in a page; this
192 * is a pointer to such a status block. NULL if not tracked.
193 */
194 void *shadow;
195#endif
57e0a030 196
90572890
PZ
197#ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
198 int _last_cpupid;
57e0a030 199#endif
fc9bb8c7
CL
200}
201/*
43570fd2
HC
202 * The struct page can be forced to be double word aligned so that atomic ops
203 * on double words work. The SLUB allocator can make use of such a feature.
fc9bb8c7 204 */
43570fd2
HC
205#ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
206 __aligned(2 * sizeof(unsigned long))
fc9bb8c7
CL
207#endif
208;
5b99cd0e 209
30d3c128
IC
210struct page_frag {
211 struct page *page;
212#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
213 __u32 offset;
214 __u32 size;
215#else
216 __u16 offset;
217 __u16 size;
218#endif
219};
220
ca16d140
KM
221typedef unsigned long __nocast vm_flags_t;
222
8feae131
DH
223/*
224 * A region containing a mapping of a non-memory backed file under NOMMU
225 * conditions. These are held in a global tree and are pinned by the VMAs that
226 * map parts of them.
227 */
228struct vm_region {
229 struct rb_node vm_rb; /* link in global region tree */
ca16d140 230 vm_flags_t vm_flags; /* VMA vm_flags */
8feae131
DH
231 unsigned long vm_start; /* start address of region */
232 unsigned long vm_end; /* region initialised to here */
dd8632a1 233 unsigned long vm_top; /* region allocated to here */
8feae131
DH
234 unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
235 struct file *vm_file; /* the backing file or NULL */
236
1e2ae599 237 int vm_usage; /* region usage count (access under nommu_region_sem) */
cfe79c00
MF
238 bool vm_icache_flushed : 1; /* true if the icache has been flushed for
239 * this region */
8feae131
DH
240};
241
c92ff1bd
MS
242/*
243 * This struct defines a memory VMM memory area. There is one of these
244 * per VM-area/task. A VM area is any part of the process virtual memory
245 * space that has a special rule for the page-fault handlers (ie a shared
246 * library, the executable area etc).
247 */
248struct vm_area_struct {
e4c6bfd2
RR
249 /* The first cache line has the info for VMA tree walking. */
250
c92ff1bd
MS
251 unsigned long vm_start; /* Our start address within vm_mm. */
252 unsigned long vm_end; /* The first byte after our end address
253 within vm_mm. */
254
255 /* linked list of VM areas per task, sorted by address */
297c5eee 256 struct vm_area_struct *vm_next, *vm_prev;
c92ff1bd 257
c92ff1bd
MS
258 struct rb_node vm_rb;
259
d3737187
ML
260 /*
261 * Largest free memory gap in bytes to the left of this VMA.
262 * Either between this VMA and vma->vm_prev, or between one of the
263 * VMAs below us in the VMA rbtree and its ->vm_prev. This helps
264 * get_unmapped_area find a free area of the right size.
265 */
266 unsigned long rb_subtree_gap;
267
e4c6bfd2
RR
268 /* Second cache line starts here. */
269
270 struct mm_struct *vm_mm; /* The address space we belong to. */
271 pgprot_t vm_page_prot; /* Access permissions of this VMA. */
272 unsigned long vm_flags; /* Flags, see mm.h. */
273
c92ff1bd
MS
274 /*
275 * For areas with an address space and backing store,
6b2dbba8 276 * linkage into the address_space->i_mmap interval tree, or
c92ff1bd
MS
277 * linkage of vma in the address_space->i_mmap_nonlinear list.
278 */
279 union {
280 struct {
6b2dbba8
ML
281 struct rb_node rb;
282 unsigned long rb_subtree_last;
283 } linear;
284 struct list_head nonlinear;
c92ff1bd
MS
285 } shared;
286
287 /*
288 * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
289 * list, after a COW of one of the file pages. A MAP_SHARED vma
290 * can only be in the i_mmap tree. An anonymous MAP_PRIVATE, stack
291 * or brk vma (with NULL file) can only be in an anon_vma list.
292 */
5beb4930
RR
293 struct list_head anon_vma_chain; /* Serialized by mmap_sem &
294 * page_table_lock */
c92ff1bd
MS
295 struct anon_vma *anon_vma; /* Serialized by page_table_lock */
296
297 /* Function pointers to deal with this struct. */
f0f37e2f 298 const struct vm_operations_struct *vm_ops;
c92ff1bd
MS
299
300 /* Information about our backing store: */
301 unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
302 units, *not* PAGE_CACHE_SIZE */
303 struct file * vm_file; /* File we map to (can be NULL). */
304 void * vm_private_data; /* was vm_pte (shared mem) */
c92ff1bd
MS
305
306#ifndef CONFIG_MMU
8feae131 307 struct vm_region *vm_region; /* NOMMU mapping region */
c92ff1bd
MS
308#endif
309#ifdef CONFIG_NUMA
310 struct mempolicy *vm_policy; /* NUMA policy for the VMA */
311#endif
312};
313
b564daf8
ON
314struct core_thread {
315 struct task_struct *task;
316 struct core_thread *next;
317};
318
32ecb1f2 319struct core_state {
c5f1cc8c 320 atomic_t nr_threads;
b564daf8 321 struct core_thread dumper;
32ecb1f2
ON
322 struct completion startup;
323};
324
d559db08
KH
325enum {
326 MM_FILEPAGES,
327 MM_ANONPAGES,
b084d435 328 MM_SWAPENTS,
d559db08
KH
329 NR_MM_COUNTERS
330};
331
57c1ffce 332#if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU)
34e55232 333#define SPLIT_RSS_COUNTING
34e55232
KH
334/* per-thread cached information, */
335struct task_rss_stat {
336 int events; /* for synchronization threshold */
337 int count[NR_MM_COUNTERS];
338};
57c1ffce 339#endif /* USE_SPLIT_PTE_PTLOCKS */
172703b0 340
d559db08 341struct mm_rss_stat {
172703b0 342 atomic_long_t count[NR_MM_COUNTERS];
d559db08 343};
d559db08 344
db446a08 345struct kioctx_table;
c92ff1bd 346struct mm_struct {
615d6e87 347 struct vm_area_struct *mmap; /* list of VMAs */
c92ff1bd 348 struct rb_root mm_rb;
615d6e87 349 u32 vmacache_seqnum; /* per-thread vmacache */
efc1a3b1 350#ifdef CONFIG_MMU
c92ff1bd
MS
351 unsigned long (*get_unmapped_area) (struct file *filp,
352 unsigned long addr, unsigned long len,
353 unsigned long pgoff, unsigned long flags);
efc1a3b1 354#endif
c92ff1bd 355 unsigned long mmap_base; /* base of mmap area */
41aacc1e 356 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
c92ff1bd 357 unsigned long task_size; /* size of task vm space */
d3737187 358 unsigned long highest_vm_end; /* highest vma end address */
c92ff1bd
MS
359 pgd_t * pgd;
360 atomic_t mm_users; /* How many users with user space? */
361 atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */
e1f56c89 362 atomic_long_t nr_ptes; /* Page table pages */
c92ff1bd 363 int map_count; /* number of VMAs */
481b4bb5 364
c92ff1bd 365 spinlock_t page_table_lock; /* Protects page tables and some counters */
481b4bb5 366 struct rw_semaphore mmap_sem;
c92ff1bd
MS
367
368 struct list_head mmlist; /* List of maybe swapped mm's. These are globally strung
369 * together off init_mm.mmlist, and are protected
370 * by mmlist_lock
371 */
372
c92ff1bd
MS
373
374 unsigned long hiwater_rss; /* High-watermark of RSS usage */
375 unsigned long hiwater_vm; /* High-water virtual memory usage */
376
e10d59f2
CL
377 unsigned long total_vm; /* Total pages mapped */
378 unsigned long locked_vm; /* Pages that have PG_mlocked set */
379 unsigned long pinned_vm; /* Refcount permanently increased */
380 unsigned long shared_vm; /* Shared pages (files) */
381 unsigned long exec_vm; /* VM_EXEC & ~VM_WRITE */
382 unsigned long stack_vm; /* VM_GROWSUP/DOWN */
e10d59f2 383 unsigned long def_flags;
c92ff1bd
MS
384 unsigned long start_code, end_code, start_data, end_data;
385 unsigned long start_brk, brk, start_stack;
386 unsigned long arg_start, arg_end, env_start, env_end;
387
388 unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
389
d559db08
KH
390 /*
391 * Special counters, in some configurations protected by the
392 * page_table_lock, in other configurations by being atomic.
393 */
394 struct mm_rss_stat rss_stat;
395
801460d0
HS
396 struct linux_binfmt *binfmt;
397
6345d24d
LT
398 cpumask_var_t cpu_vm_mask_var;
399
c92ff1bd
MS
400 /* Architecture-specific MM context */
401 mm_context_t context;
402
c92ff1bd
MS
403 unsigned long flags; /* Must use atomic bitops to access the bits */
404
a94e2d40 405 struct core_state *core_state; /* coredumping support */
858f0993 406#ifdef CONFIG_AIO
db446a08
BL
407 spinlock_t ioctx_lock;
408 struct kioctx_table __rcu *ioctx_table;
858f0993 409#endif
f98bafa0 410#ifdef CONFIG_MEMCG
4cd1a8fc
KM
411 /*
412 * "owner" points to a task that is regarded as the canonical
413 * user/owner of this mm. All of the following must be true in
414 * order for it to be changed:
415 *
416 * current == mm->owner
417 * current->mm != mm
418 * new_owner->mm == mm
419 * new_owner->alloc_lock is held
420 */
4d2deb40 421 struct task_struct __rcu *owner;
78fb7466 422#endif
925d1c40 423
925d1c40
MH
424 /* store ref to file /proc/<pid>/exe symlink points to */
425 struct file *exe_file;
cddb8a5c
AA
426#ifdef CONFIG_MMU_NOTIFIER
427 struct mmu_notifier_mm *mmu_notifier_mm;
e7a00c45 428#endif
e009bb30 429#if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
e7a00c45 430 pgtable_t pmd_huge_pte; /* protected by page_table_lock */
cddb8a5c 431#endif
6345d24d
LT
432#ifdef CONFIG_CPUMASK_OFFSTACK
433 struct cpumask cpumask_allocation;
cbee9f88
PZ
434#endif
435#ifdef CONFIG_NUMA_BALANCING
436 /*
34f0315a
MG
437 * numa_next_scan is the next time that the PTEs will be marked
438 * pte_numa. NUMA hinting faults will gather statistics and migrate
439 * pages to new nodes if necessary.
cbee9f88
PZ
440 */
441 unsigned long numa_next_scan;
442
6e5fb223
PZ
443 /* Restart point for scanning and setting pte_numa */
444 unsigned long numa_scan_offset;
445
cbee9f88
PZ
446 /* numa_scan_seq prevents two threads setting pte_numa */
447 int numa_scan_seq;
20841405
RR
448#endif
449#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
450 /*
451 * An operation with batched TLB flushing is going on. Anything that
452 * can move process memory needs to flush the TLB when moving a
453 * PROT_NONE or PROT_NUMA mapped page.
454 */
455 bool tlb_flush_pending;
6345d24d 456#endif
d4b3b638 457 struct uprobes_state uprobes_state;
fe3d197f
DH
458#ifdef CONFIG_X86_INTEL_MPX
459 /* address of the bounds directory */
460 void __user *bd_addr;
461#endif
c92ff1bd
MS
462};
463
6345d24d
LT
464static inline void mm_init_cpumask(struct mm_struct *mm)
465{
466#ifdef CONFIG_CPUMASK_OFFSTACK
467 mm->cpu_vm_mask_var = &mm->cpumask_allocation;
468#endif
41f727fd 469 cpumask_clear(mm->cpu_vm_mask_var);
6345d24d
LT
470}
471
45e575ab 472/* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
de03c72c
KM
473static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
474{
475 return mm->cpu_vm_mask_var;
476}
45e575ab 477
20841405
RR
478#if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
479/*
480 * Memory barriers to keep this state in sync are graciously provided by
481 * the page table locks, outside of which no page table modifications happen.
482 * The barriers below prevent the compiler from re-ordering the instructions
483 * around the memory barriers that are already present in the code.
484 */
485static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
486{
487 barrier();
488 return mm->tlb_flush_pending;
489}
490static inline void set_tlb_flush_pending(struct mm_struct *mm)
491{
492 mm->tlb_flush_pending = true;
af2c1401
MG
493
494 /*
495 * Guarantee that the tlb_flush_pending store does not leak into the
496 * critical section updating the page tables
497 */
498 smp_mb__before_spinlock();
20841405
RR
499}
500/* Clearing is done after a TLB flush, which also provides a barrier. */
501static inline void clear_tlb_flush_pending(struct mm_struct *mm)
502{
503 barrier();
504 mm->tlb_flush_pending = false;
505}
506#else
507static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
508{
509 return false;
510}
511static inline void set_tlb_flush_pending(struct mm_struct *mm)
512{
513}
514static inline void clear_tlb_flush_pending(struct mm_struct *mm)
515{
516}
517#endif
518
a62c34bd
AL
519struct vm_special_mapping
520{
521 const char *name;
522 struct page **pages;
523};
524
d17d8f9d
DH
525enum tlb_flush_reason {
526 TLB_FLUSH_ON_TASK_SWITCH,
527 TLB_REMOTE_SHOOTDOWN,
528 TLB_LOCAL_SHOOTDOWN,
529 TLB_LOCAL_MM_SHOOTDOWN,
530 NR_TLB_FLUSH_REASONS,
531};
532
bd6dace7
TH
533 /*
534 * A swap entry has to fit into a "unsigned long", as the entry is hidden
535 * in the "index" field of the swapper address space.
536 */
537typedef struct {
538 unsigned long val;
539} swp_entry_t;
540
5b99cd0e 541#endif /* _LINUX_MM_TYPES_H */
This page took 0.90774 seconds and 5 git commands to generate.