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