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