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