These changes are a raw update to a vanilla kernel 4.1.10, with the
[kvmfornfv.git] / kernel / include / linux / mm_types.h
1 #ifndef _LINUX_MM_TYPES_H
2 #define _LINUX_MM_TYPES_H
3
4 #include <linux/auxvec.h>
5 #include <linux/types.h>
6 #include <linux/threads.h>
7 #include <linux/list.h>
8 #include <linux/spinlock.h>
9 #include <linux/rbtree.h>
10 #include <linux/rwsem.h>
11 #include <linux/completion.h>
12 #include <linux/cpumask.h>
13 #include <linux/uprobes.h>
14 #include <linux/rcupdate.h>
15 #include <linux/page-flags-layout.h>
16 #include <asm/page.h>
17 #include <asm/mmu.h>
18
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
24 struct address_space;
25 struct mem_cgroup;
26
27 #define USE_SPLIT_PTE_PTLOCKS   (NR_CPUS >= CONFIG_SPLIT_PTLOCK_CPUS)
28 #define USE_SPLIT_PMD_PTLOCKS   (USE_SPLIT_PTE_PTLOCKS && \
29                 IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK))
30 #define ALLOC_SPLIT_PTLOCKS     (SPINLOCK_SIZE > BITS_PER_LONG/8)
31
32 typedef void compound_page_dtor(struct page *);
33
34 /*
35  * Each physical page in the system has a struct page associated with
36  * it to keep track of whatever it is we are using the page for at the
37  * moment. Note that we have no way to track which tasks are using
38  * a page, though if it is a pagecache page, rmap structures can tell us
39  * who is mapping it.
40  *
41  * The objects in struct page are organized in double word blocks in
42  * order to allows us to use atomic double word operations on portions
43  * of struct page. That is currently only used by slub but the arrangement
44  * allows the use of atomic double word operations on the flags/mapping
45  * and lru list pointers also.
46  */
47 struct page {
48         /* First double word block */
49         unsigned long flags;            /* Atomic flags, some possibly
50                                          * updated asynchronously */
51         union {
52                 struct address_space *mapping;  /* If low bit clear, points to
53                                                  * inode address_space, or NULL.
54                                                  * If page mapped as anonymous
55                                                  * memory, low bit is set, and
56                                                  * it points to anon_vma object:
57                                                  * see PAGE_MAPPING_ANON below.
58                                                  */
59                 void *s_mem;                    /* slab first object */
60         };
61
62         /* Second double word */
63         struct {
64                 union {
65                         pgoff_t index;          /* Our offset within mapping. */
66                         void *freelist;         /* sl[aou]b first free object */
67                 };
68
69                 union {
70 #if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
71         defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
72                         /* Used for cmpxchg_double in slub */
73                         unsigned long counters;
74 #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
82
83                         struct {
84
85                                 union {
86                                         /*
87                                          * Count of ptes mapped in
88                                          * mms, to show when page is
89                                          * mapped & limit reverse map
90                                          * searches.
91                                          *
92                                          * Used also for tail pages
93                                          * refcounting instead of
94                                          * _count. Tail pages cannot
95                                          * be mapped and keeping the
96                                          * tail page _count zero at
97                                          * all times guarantees
98                                          * get_page_unless_zero() will
99                                          * never succeed on tail
100                                          * pages.
101                                          */
102                                         atomic_t _mapcount;
103
104                                         struct { /* SLUB */
105                                                 unsigned inuse:16;
106                                                 unsigned objects:15;
107                                                 unsigned frozen:1;
108                                         };
109                                         int units;      /* SLOB */
110                                 };
111                                 atomic_t _count;                /* Usage count, see below. */
112                         };
113                         unsigned int active;    /* SLAB */
114                 };
115         };
116
117         /* Third double word block */
118         union {
119                 struct list_head lru;   /* Pageout list, eg. active_list
120                                          * protected by zone->lru_lock !
121                                          * Can be used as a generic list
122                                          * by the page owner.
123                                          */
124                 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                 };
134
135                 struct slab *slab_page; /* slab fields */
136                 struct rcu_head rcu_head;       /* Used by SLAB
137                                                  * when destroying via RCU
138                                                  */
139                 /* First tail page of compound page */
140                 struct {
141                         compound_page_dtor *compound_dtor;
142                         unsigned long compound_order;
143                 };
144
145 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS
146                 pgtable_t pmd_huge_pte; /* protected by page->ptl */
147 #endif
148         };
149
150         /* Remainder is not double word aligned */
151         union {
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                                                  */
159 #if USE_SPLIT_PTE_PTLOCKS
160 #if ALLOC_SPLIT_PTLOCKS
161                 spinlock_t *ptl;
162 #else
163                 spinlock_t ptl;
164 #endif
165 #endif
166                 struct kmem_cache *slab_cache;  /* SL[AU]B: Pointer to slab */
167                 struct page *first_page;        /* Compound tail pages */
168         };
169
170 #ifdef CONFIG_MEMCG
171         struct mem_cgroup *mem_cgroup;
172 #endif
173
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 */
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
196
197 #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
198         int _last_cpupid;
199 #endif
200 }
201 /*
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.
204  */
205 #ifdef CONFIG_HAVE_ALIGNED_STRUCT_PAGE
206         __aligned(2 * sizeof(unsigned long))
207 #endif
208 ;
209
210 struct 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
221 typedef unsigned long __nocast vm_flags_t;
222
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  */
228 struct vm_region {
229         struct rb_node  vm_rb;          /* link in global region tree */
230         vm_flags_t      vm_flags;       /* VMA vm_flags */
231         unsigned long   vm_start;       /* start address of region */
232         unsigned long   vm_end;         /* region initialised to here */
233         unsigned long   vm_top;         /* region allocated to here */
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
237         int             vm_usage;       /* region usage count (access under nommu_region_sem) */
238         bool            vm_icache_flushed : 1; /* true if the icache has been flushed for
239                                                 * this region */
240 };
241
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  */
248 struct vm_area_struct {
249         /* The first cache line has the info for VMA tree walking. */
250
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 */
256         struct vm_area_struct *vm_next, *vm_prev;
257
258         struct rb_node vm_rb;
259
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
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
274         /*
275          * For areas with an address space and backing store,
276          * linkage into the address_space->i_mmap interval tree.
277          */
278         struct {
279                 struct rb_node rb;
280                 unsigned long rb_subtree_last;
281         } shared;
282
283         /*
284          * A file's MAP_PRIVATE vma can be in both i_mmap tree and anon_vma
285          * list, after a COW of one of the file pages.  A MAP_SHARED vma
286          * can only be in the i_mmap tree.  An anonymous MAP_PRIVATE, stack
287          * or brk vma (with NULL file) can only be in an anon_vma list.
288          */
289         struct list_head anon_vma_chain; /* Serialized by mmap_sem &
290                                           * page_table_lock */
291         struct anon_vma *anon_vma;      /* Serialized by page_table_lock */
292
293         /* Function pointers to deal with this struct. */
294         const struct vm_operations_struct *vm_ops;
295
296         /* Information about our backing store: */
297         unsigned long vm_pgoff;         /* Offset (within vm_file) in PAGE_SIZE
298                                            units, *not* PAGE_CACHE_SIZE */
299         struct file * vm_file;          /* File we map to (can be NULL). */
300         void * vm_private_data;         /* was vm_pte (shared mem) */
301
302 #ifndef CONFIG_MMU
303         struct vm_region *vm_region;    /* NOMMU mapping region */
304 #endif
305 #ifdef CONFIG_NUMA
306         struct mempolicy *vm_policy;    /* NUMA policy for the VMA */
307 #endif
308 };
309
310 struct core_thread {
311         struct task_struct *task;
312         struct core_thread *next;
313 };
314
315 struct core_state {
316         atomic_t nr_threads;
317         struct core_thread dumper;
318         struct completion startup;
319 };
320
321 enum {
322         MM_FILEPAGES,
323         MM_ANONPAGES,
324         MM_SWAPENTS,
325         NR_MM_COUNTERS
326 };
327
328 #if USE_SPLIT_PTE_PTLOCKS && defined(CONFIG_MMU)
329 #define SPLIT_RSS_COUNTING
330 /* per-thread cached information, */
331 struct task_rss_stat {
332         int events;     /* for synchronization threshold */
333         int count[NR_MM_COUNTERS];
334 };
335 #endif /* USE_SPLIT_PTE_PTLOCKS */
336
337 struct mm_rss_stat {
338         atomic_long_t count[NR_MM_COUNTERS];
339 };
340
341 struct kioctx_table;
342 struct mm_struct {
343         struct vm_area_struct *mmap;            /* list of VMAs */
344         struct rb_root mm_rb;
345         u32 vmacache_seqnum;                   /* per-thread vmacache */
346 #ifdef CONFIG_MMU
347         unsigned long (*get_unmapped_area) (struct file *filp,
348                                 unsigned long addr, unsigned long len,
349                                 unsigned long pgoff, unsigned long flags);
350 #endif
351         unsigned long mmap_base;                /* base of mmap area */
352         unsigned long mmap_legacy_base;         /* base of mmap area in bottom-up allocations */
353         unsigned long task_size;                /* size of task vm space */
354         unsigned long highest_vm_end;           /* highest vma end address */
355         pgd_t * pgd;
356         atomic_t mm_users;                      /* How many users with user space? */
357         atomic_t mm_count;                      /* How many references to "struct mm_struct" (users count as 1) */
358         atomic_long_t nr_ptes;                  /* PTE page table pages */
359 #if CONFIG_PGTABLE_LEVELS > 2
360         atomic_long_t nr_pmds;                  /* PMD page table pages */
361 #endif
362         int map_count;                          /* number of VMAs */
363
364         spinlock_t page_table_lock;             /* Protects page tables and some counters */
365         struct rw_semaphore mmap_sem;
366
367         struct list_head mmlist;                /* List of maybe swapped mm's.  These are globally strung
368                                                  * together off init_mm.mmlist, and are protected
369                                                  * by mmlist_lock
370                                                  */
371
372
373         unsigned long hiwater_rss;      /* High-watermark of RSS usage */
374         unsigned long hiwater_vm;       /* High-water virtual memory usage */
375
376         unsigned long total_vm;         /* Total pages mapped */
377         unsigned long locked_vm;        /* Pages that have PG_mlocked set */
378         unsigned long pinned_vm;        /* Refcount permanently increased */
379         unsigned long shared_vm;        /* Shared pages (files) */
380         unsigned long exec_vm;          /* VM_EXEC & ~VM_WRITE */
381         unsigned long stack_vm;         /* VM_GROWSUP/DOWN */
382         unsigned long def_flags;
383         unsigned long start_code, end_code, start_data, end_data;
384         unsigned long start_brk, brk, start_stack;
385         unsigned long arg_start, arg_end, env_start, env_end;
386
387         unsigned long saved_auxv[AT_VECTOR_SIZE]; /* for /proc/PID/auxv */
388
389         /*
390          * Special counters, in some configurations protected by the
391          * page_table_lock, in other configurations by being atomic.
392          */
393         struct mm_rss_stat rss_stat;
394
395         struct linux_binfmt *binfmt;
396
397         cpumask_var_t cpu_vm_mask_var;
398
399         /* Architecture-specific MM context */
400         mm_context_t context;
401
402         unsigned long flags; /* Must use atomic bitops to access the bits */
403
404         struct core_state *core_state; /* coredumping support */
405 #ifdef CONFIG_AIO
406         spinlock_t                      ioctx_lock;
407         struct kioctx_table __rcu       *ioctx_table;
408 #endif
409 #ifdef CONFIG_MEMCG
410         /*
411          * "owner" points to a task that is regarded as the canonical
412          * user/owner of this mm. All of the following must be true in
413          * order for it to be changed:
414          *
415          * current == mm->owner
416          * current->mm != mm
417          * new_owner->mm == mm
418          * new_owner->alloc_lock is held
419          */
420         struct task_struct __rcu *owner;
421 #endif
422
423         /* store ref to file /proc/<pid>/exe symlink points to */
424         struct file __rcu *exe_file;
425 #ifdef CONFIG_MMU_NOTIFIER
426         struct mmu_notifier_mm *mmu_notifier_mm;
427 #endif
428 #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS
429         pgtable_t pmd_huge_pte; /* protected by page_table_lock */
430 #endif
431 #ifdef CONFIG_CPUMASK_OFFSTACK
432         struct cpumask cpumask_allocation;
433 #endif
434 #ifdef CONFIG_NUMA_BALANCING
435         /*
436          * numa_next_scan is the next time that the PTEs will be marked
437          * pte_numa. NUMA hinting faults will gather statistics and migrate
438          * pages to new nodes if necessary.
439          */
440         unsigned long numa_next_scan;
441
442         /* Restart point for scanning and setting pte_numa */
443         unsigned long numa_scan_offset;
444
445         /* numa_scan_seq prevents two threads setting pte_numa */
446         int numa_scan_seq;
447 #endif
448 #if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
449         /*
450          * An operation with batched TLB flushing is going on. Anything that
451          * can move process memory needs to flush the TLB when moving a
452          * PROT_NONE or PROT_NUMA mapped page.
453          */
454         bool tlb_flush_pending;
455 #endif
456         struct uprobes_state uprobes_state;
457 #ifdef CONFIG_PREEMPT_RT_BASE
458         struct rcu_head delayed_drop;
459 #endif
460 #ifdef CONFIG_X86_INTEL_MPX
461         /* address of the bounds directory */
462         void __user *bd_addr;
463 #endif
464 };
465
466 static inline void mm_init_cpumask(struct mm_struct *mm)
467 {
468 #ifdef CONFIG_CPUMASK_OFFSTACK
469         mm->cpu_vm_mask_var = &mm->cpumask_allocation;
470 #endif
471         cpumask_clear(mm->cpu_vm_mask_var);
472 }
473
474 /* Future-safe accessor for struct mm_struct's cpu_vm_mask. */
475 static inline cpumask_t *mm_cpumask(struct mm_struct *mm)
476 {
477         return mm->cpu_vm_mask_var;
478 }
479
480 #if defined(CONFIG_NUMA_BALANCING) || defined(CONFIG_COMPACTION)
481 /*
482  * Memory barriers to keep this state in sync are graciously provided by
483  * the page table locks, outside of which no page table modifications happen.
484  * The barriers below prevent the compiler from re-ordering the instructions
485  * around the memory barriers that are already present in the code.
486  */
487 static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
488 {
489         barrier();
490         return mm->tlb_flush_pending;
491 }
492 static inline void set_tlb_flush_pending(struct mm_struct *mm)
493 {
494         mm->tlb_flush_pending = true;
495
496         /*
497          * Guarantee that the tlb_flush_pending store does not leak into the
498          * critical section updating the page tables
499          */
500         smp_mb__before_spinlock();
501 }
502 /* Clearing is done after a TLB flush, which also provides a barrier. */
503 static inline void clear_tlb_flush_pending(struct mm_struct *mm)
504 {
505         barrier();
506         mm->tlb_flush_pending = false;
507 }
508 #else
509 static inline bool mm_tlb_flush_pending(struct mm_struct *mm)
510 {
511         return false;
512 }
513 static inline void set_tlb_flush_pending(struct mm_struct *mm)
514 {
515 }
516 static inline void clear_tlb_flush_pending(struct mm_struct *mm)
517 {
518 }
519 #endif
520
521 struct vm_special_mapping
522 {
523         const char *name;
524         struct page **pages;
525 };
526
527 enum tlb_flush_reason {
528         TLB_FLUSH_ON_TASK_SWITCH,
529         TLB_REMOTE_SHOOTDOWN,
530         TLB_LOCAL_SHOOTDOWN,
531         TLB_LOCAL_MM_SHOOTDOWN,
532         NR_TLB_FLUSH_REASONS,
533 };
534
535  /*
536   * A swap entry has to fit into a "unsigned long", as the entry is hidden
537   * in the "index" field of the swapper address space.
538   */
539 typedef struct {
540         unsigned long val;
541 } swp_entry_t;
542
543 #endif /* _LINUX_MM_TYPES_H */